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

9 lines
180 B
TypeScript
Raw Normal View History

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