diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0b38a99..6817972 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_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 openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "L'Antico Forziere | Italian Fine Dining & Country House", description: "Experience authentic Italian fine dining and luxury countryside accommodations at L'Antico Forziere. Savor handcrafted pasta, signature seafood, and truffle specialties in a historic setting.", keywords: "Italian restaurant, fine dining, luxury accommodations, countryside retreat, Tuscany, gourmet cuisine, truffle pasta", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "L'Antico Forziere | Italian Fine Dining & Country House", description: "Authentic Italian fine dining meets luxury countryside hospitality. Reserve your table or book your stay.", siteName: "L'Antico Forziere", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/restaurant-scene-with-flower_1147-446.jpg", alt: "L'Antico Forziere Restaurant"}, - ], - }, - twitter: { - card: "summary_large_image", title: "L'Antico Forziere | Italian Fine Dining", description: "Discover authentic Italian cuisine in a historic countryside setting.", images: ["http://img.b2bpic.net/free-photo/restaurant-scene-with-flower_1147-446.jpg"], - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}