2025-08-06 16:26:14 +02:00
|
|
|
import localFont from "next/font/local";
|
2025-08-04 17:45:44 +02:00
|
|
|
|
2025-08-06 16:26:14 +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
|
|
|
});
|