From 08352f3383938fc2d9baa02ca93c325e977982ba Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 15:59:53 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 43de580..6ad099e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito } 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 inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], -}); +const inter = Inter({ variable: "--font-inter", subsets: ["latin"] }); export const metadata: Metadata = { - title: "GiustoCosì | Fine Dining in Treviglio", description: "Experience innovative Italian cuisine at GiustoCosì. Located in Treviglio's historic center, we offer signature dishes and exceptional hospitality led by Chef Niccolò.", keywords: "fine dining Treviglio, Italian restaurant, innovative cuisine, Gyrozoncelli, reservations", metadataBase: new URL("https://giustocosi.it"), - alternates: { - canonical: "https://giustocosi.it"}, - openGraph: { - title: "GiustoCosì | Elegant Dining Experience", description: "Discover signature dishes and warm hospitality in historic Treviglio", url: "https://giustocosi.it", siteName: "GiustoCosì", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/side-view-couple-having-lunch_23-2150598339.jpg", alt: "GiustoCosì elegant dining room"}, - ], - }, - twitter: { - card: "summary_large_image", title: "GiustoCosì | Fine Dining", description: "Experience innovative Italian cuisine in Treviglio", images: ["http://img.b2bpic.net/free-photo/side-view-couple-having-lunch_23-2150598339.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "GiustoCosì - Fine Dining in Treviglio", description: "Discover innovative cuisine and exceptional hospitality at GiustoCosì, a fine dining restaurant in Treviglio's historic center."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}