diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0d09ce2..8d6ef2f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Figtree } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Figtree } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const figtree = Figtree({ variable: "--font-figtree", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Maheen's Restaurant | Luxury Fine Dining Experience", + description: "Award-winning fine dining restaurant offering exquisite cuisine, elegant ambiance, online ordering, table reservations, and payment processing.", + keywords: "fine dining, luxury restaurant, reservation, online order, Michelin star, gourmet", + metadataBase: new URL("https://maheensrestaurant.com"), + alternates: { + canonical: "https://maheensrestaurant.com", + }, + openGraph: { + title: "Maheen's Restaurant | Luxury Fine Dining", + description: "Experience culinary excellence in an atmosphere of pure sophistication at Maheen's Restaurant.", + url: "https://maheensrestaurant.com", + siteName: "Maheen's Restaurant", + type: "website", + images: [ + { + url: "https://maheensrestaurant.com/og-image.jpg", + alt: "Maheen's Restaurant Luxury Dining", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Maheen's Restaurant | Fine Dining", + description: "Award-winning luxury dining experience with gourmet cuisine.", + images: ["https://maheensrestaurant.com/twitter-image.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}