diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5f6b6bc..87c075f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,50 +1,17 @@ import type { Metadata } from "next"; -import { Poppins } from "next/font/google"; -import { DM_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); +import "./styles/globals.css"; export const metadata: Metadata = { - title: "Culinary Haven | Fine Dining Restaurant", description: "Experience award-winning cuisine and exceptional hospitality at Culinary Haven. Reserve your table today for an unforgettable fine dining experience.", keywords: "fine dining restaurant, gourmet cuisine, chef-driven restaurant, culinary excellence, reservation, upscale dining", openGraph: { - title: "Culinary Haven | Fine Dining Restaurant", description: "Experience award-winning cuisine and exceptional hospitality at Culinary Haven.", type: "website", siteName: "Culinary Haven", images: [ - { - url: "http://img.b2bpic.net/free-photo/beautiful-decorated-table-with-pine-leaf_8353-10194.jpg", alt: "Fine dining ambiance at Culinary Haven" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Culinary Haven | Fine Dining Restaurant", description: "Experience award-winning cuisine and exceptional hospitality.", images: ["http://img.b2bpic.net/free-photo/beautiful-decorated-table-with-pine-leaf_8353-10194.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Culinary Haven | Award-Winning Fine Dining", description: "Experience exceptional cuisine crafted by award-winning chefs in an elegant atmosphere designed for unforgettable moments."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}