From f93801e3ded24bc1d59ea0a4be54e1fe3afabcad Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 12:35:37 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 48 ++++++++-------------------------------------- 1 file changed, 8 insertions(+), 40 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c314701..e61d852 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,53 +1,22 @@ import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ variable: "--font-inter", subsets: ["latin"] }); export const metadata: Metadata = { - title: "Gaudere - Ristorante di Pesce a Roma", description: "Scopri Gaudere, ristorante di pesce a Roma nel cuore di Mezzocammino. Piatti freschi, ingredienti locali e atmosfera elegante. Prenota il tuo tavolo oggi.", keywords: "ristorante pesce Roma, Mezzocammino, cucina mediterranea, fish restaurant Rome, prenotazioni, cena romantica", metadataBase: new URL("https://www.gaudereristorante.it/"), - alternates: { - canonical: "https://www.gaudereristorante.it/" - }, - openGraph: { - title: "Gaudere - Ristorante di Pesce a Roma", description: "Ristorante di pesce dove tradizione e innovazione si incontrano. Scopri la cucina mediterranea autentica.", url: "https://www.gaudereristorante.it/", siteName: "Gaudere", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/orange-rolls-slices-table_140725-3796.jpg", alt: "Gaudere - Ristorante di Pesce a Roma" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Gaudere - Ristorante di Pesce a Roma", description: "Piatti freschi, ingredienti locali e atmosfera accogliente", images: ["http://img.b2bpic.net/free-photo/orange-rolls-slices-table_140725-3796.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Gaudere - Ristorante di Pesce a Roma", description: "Ristorante di pesce a Roma con piatti freschi, ingredienti locali e atmosfera accogliente nel cuore di Mezzocammino."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +