diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6857b71..7d9a8a7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,36 @@ 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: "Savour | Fine Dining Restaurant", description: "Experience award-winning fine dining at Savour. Michelin-trained cuisine, elegant ambiance, and world-class service. Reserve your table today.", keywords: "fine dining, restaurant, fine dining reservation, gourmet cuisine, French restaurant, wine pairing", metadataBase: new URL("https://savourrestaurant.com"), - alternates: { - canonical: "https://savourrestaurant.com"}, - openGraph: { - title: "Savour | Fine Dining Restaurant", description: "Experience award-winning fine dining at Savour. Michelin-trained cuisine, elegant ambiance, and world-class service.", url: "https://savourrestaurant.com", siteName: "Savour", type: "website", images: [ - { - url: "https://savourrestaurant.com/og-image.jpg", alt: "Fine dining at Savour restaurant"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Savour | Fine Dining Restaurant", description: "Experience award-winning fine dining. Reserve your table today.", images: ["https://savourrestaurant.com/twitter-image.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Savour - Fine Dining Restaurant", description: "Experience award-winning fine dining cuisine in an elegant atmosphere at Savour Restaurant."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - + +