diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 15cef46..27ee8d3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1424 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito_Sans } 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 nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Ristorante Due Fratelli | Authentic Italian Cuisine", description: "Experience authentic Italian dining from two passionate brothers. Traditional recipes, warm hospitality, and unforgettable meals. Reserve your table at Due Fratelli today.", keywords: "Italian restaurant, authentic cuisine, family dining, fine dining, reservations, carbonara, tiramisu", metadataBase: new URL("https://www.duefratelli.com"), - alternates: { - canonical: "https://www.duefratelli.com"}, - openGraph: { - title: "Ristorante Due Fratelli | Authentic Italian Cuisine", description: "Experience authentic Italian dining prepared with passion by two brothers. Join us for an unforgettable evening.", type: "website", siteName: "Ristorante Due Fratelli", images: [ - { - url: "http://img.b2bpic.net/free-photo/top-view-meat-plates_23-2147716912.jpg", alt: "authentic italian restaurant warm ambiance"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Ristorante Due Fratelli", description: "Authentic Italian cuisine from two passionate brothers. Reserve now.", images: ["http://img.b2bpic.net/free-photo/top-view-meat-plates_23-2147716912.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Due Fratelli - Authentic Italian Dining", description: "Experience authentic Italian cuisine prepared with passion by two brothers."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -