infoalloggi-monorepo/apps/infoalloggi/src/utils/fonts.ts

9 lines
184 B
TypeScript
Raw Normal View History

import localFont from "next/font/local";
2025-08-04 17:45:44 +02:00
export const inter = localFont({
src: "../../public/fonts/Inter.woff2",
2025-08-04 17:45:44 +02:00
variable: "--font-inter",
display: "swap",
preload: true,
2025-08-04 17:45:44 +02:00
});