diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1de2abb..7db5f99 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1441 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Raleway } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const raleway = Raleway({ - variable: "--font-raleway", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Premium Fine Dining Restaurant | Culinary Excellence", - description: "Experience exceptional fine dining with our award-winning chef. Reserve your table for an unforgettable culinary journey featuring premium ingredients and innovative cuisine.", - keywords: "fine dining restaurant, gourmet cuisine, upscale dining, chef, reservations, wine pairing", - metadataBase: new URL("https://www.restaurant.com"), - alternates: { - canonical: "https://www.restaurant.com", - }, - openGraph: { - title: "Premium Fine Dining Restaurant", - description: "Discover culinary masterpieces crafted with passion and the finest ingredients. Book your table for an extraordinary dining experience.", - url: "https://www.restaurant.com", - siteName: "Premium Restaurant", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/fried-meat-with-chips-vegetables_140725-352.jpg", - alt: "Gourmet cuisine at our fine dining restaurant", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Premium Fine Dining Restaurant", - description: "Experience culinary excellence with our award-winning chef and premium ingredients.", - images: ["http://img.b2bpic.net/free-photo/bass-fish-dish-arrangement_23-2148950224.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Premium Restaurant", description: "Experience fine dining excellence"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -