From 2bc273c1cab9dcb271e84a4e31733ad0b8a20e3e Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 9 Jun 2026 19:14:49 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d20bd92..7b7e765 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,23 +6,22 @@ import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; +import { DM_Sans } from "next/font/google"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); export const metadata: Metadata = { - title: 'Your Personal Grid | Connect & Explore My World', - description: 'Discover all my links, projects, and social media in one elegant, easy-to-navigate personal grid. Your central hub for everything I do.', + title: 'HACCP Smart | Soluzione Software per la Ristorazione', + description: 'Semplifica la gestione HACCP per la tua attività gastronomica con HACCP Smart. Monitoraggio automatizzato, piani personalizzati e conformità normativa garantita.', }; +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], +}); +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -31,9 +30,7 @@ export default function RootLayout({ return ( - + {children}