diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0d09ce2..16fc8b3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,58 @@ 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: "Big Daddy's Delight - Delicious Food & Great Taste", + description: "Experience authentic fast food, biryani, and refreshing drinks at Big Daddy's Delight. Order online or reserve your table today. Open 11 AM - 11 PM daily.", + keywords: "restaurant, fast food, biryani, burgers, Mumbai, dining, food delivery", + openGraph: { + title: "Big Daddy's Delight - Delicious Food, Great Taste", + description: "Popular food spot with tasty fast food, refreshing drinks, and comfortable dining. Fresh, high-quality food with great flavors.", + siteName: "Big Daddy's Delight", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/front-view-meat-hamburger-with-fresh-tomatoes-dark-background_179666-19388.jpg", + alt: "Big Daddy's Delight Restaurant", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Big Daddy's Delight - Delicious Food, Great Taste", + description: "Experience authentic fast food and traditional Indian cuisine at Big Daddy's Delight", + images: [ + "http://img.b2bpic.net/free-photo/front-view-meat-hamburger-with-fresh-tomatoes-dark-background_179666-19388.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +61,9 @@ export default function RootLayout({ return ( - + {children}