diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 873b904..0e1d638 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1433 +1,37 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { DM_Sans } from "next/font/google"; +import "./styles/variables.css"; +import "./styles/base.css"; 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 dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "The Great Debate | Premium Fine Dining in Freeport, IL", - description: "Experience exceptional fine dining with locally sourced cuisine at The Great Debate. Latino-owned restaurant featuring creative dishes, craft cocktails, and vibrant ambiance.", - keywords: "fine dining Freeport, restaurant reservations, Latino-owned restaurant Illinois, upscale dining, local cuisine", - openGraph: { - title: "The Great Debate - Premium Fine Dining", - description: "Where every meal becomes a conversation. Discover exceptional cuisine and vibrant atmosphere.", - siteName: "The Great Debate", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/high-angle-delicious-fish-meal_23-2148494083.jpg", - alt: "The Great Debate signature dish", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "The Great Debate - Premium Fine Dining", - description: "Experience exceptional fine dining with locally sourced ingredients and creative dishes.", - images: ["http://img.b2bpic.net/free-photo/high-angle-delicious-fish-meal_23-2148494083.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "The Great Debate - Fine Dining", description: "Premium fine dining with locally sourced ingredients, creative dishes, and an atmosphere perfect for unforgettable moments."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - +