Implement code changes to enhance functionality and improve performance

This commit is contained in:
Marco Pedone 2025-08-06 16:26:14 +02:00
parent 6768421795
commit 5d8305b9ff
2 changed files with 5 additions and 4 deletions

Binary file not shown.

View file

@ -1,7 +1,8 @@
import { Inter } from "next/font/google";
import localFont from "next/font/local";
export const inter = Inter({
subsets: ["latin"],
display: "swap",
export const inter = localFont({
src: "../../public/fonts/Inter.woff2",
variable: "--font-inter",
display: "swap",
preload: true,
});