diff --git a/src/app/layout.tsx b/src/app/layout.tsx index dbde07a..0b91910 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1424 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Roboto } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Shenandoah Restaurant | Fine Dining Experience", description: "Experience elevated dining at Shenandoah Restaurant. Award-winning cuisine, curated wines, and exceptional service in an intimate setting.", keywords: "fine dining restaurant, upscale cuisine, wine selection, reservation, gourmet food", metadataBase: new URL("https://shenandoah-restaurant.com"), - alternates: { - canonical: "https://shenandoah-restaurant.com"}, - openGraph: { - title: "Shenandoah Restaurant | Fine Dining", description: "Experience elevated dining with award-winning cuisine and exceptional service.", url: "https://shenandoah-restaurant.com", siteName: "Shenandoah Restaurant", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/new-year-spend-with-friends-celebrating_23-2149196964.jpg", alt: "Shenandoah Restaurant dining experience"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Shenandoah Restaurant | Fine Dining", description: "Experience elevated dining with award-winning cuisine and exceptional service.", images: ["http://img.b2bpic.net/free-photo/new-year-spend-with-friends-celebrating_23-2149196964.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Shenandoah Restaurant", description: "Experience elevated dining in our intimate atmosphere"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -