From b82b1b0593d825059c689656f35386c9238ebf65 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 20:52:43 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 51 +++++++++++----------------------------------- 1 file changed, 12 insertions(+), 39 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 40d1396..f26dfcb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Nunito } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Trattoria Bon Bon | Cucina Piemontese Tradizionale a Torino", description: "Scopri la vera cucina torinese da Trattoria Bon Bon. Agnolotti, piatti caserecci e prezzi onesti nel cuore di Torino. Prenota ora il tuo tavolo.", keywords: "Trattoria Torino, Cucina piemontese, Ristorante tradizionale Torino, Agnolotti Torino, Trattoria economica", openGraph: { - title: "Trattoria Bon Bon | Autentica Cucina Torinese", description: "Piatti tradizionali, porzioni abbondanti e prezzi onesti. Prenota il tuo tavolo a Torino.", siteName: "Trattoria Bon Bon", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-stuffed-pasta_23-2147771985.jpg", alt: "Agnolotti della Trattoria Bon Bon"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Trattoria Bon Bon - Cucina Piemontese Autentica", description: "Scopri le specialità torinesi da Trattoria Bon Bon. Prenota il tuo tavolo oggi.", images: ["http://img.b2bpic.net/free-photo/close-up-stuffed-pasta_23-2147771985.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Trattoria Bon Bon", description: "Autentica cucina piemontese dal 1985"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +