From ee73828de8966290f1413de1191f047d6dc4cba1 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Mar 2026 06:06:48 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 54 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 46 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2ed8420..eaa4e8b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,60 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Manrope } 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 { Manrope } 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 manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Charcoal Experience - Premium Fine Dining", + description: "Luxury charcoal-grilled fine dining featuring signature tandoori, kebabs, and premium meats. Book your reservation now.", + keywords: "fine dining, charcoal grill, premium restaurant, tandoori, kebabs, luxury dining", + metadataBase: new URL("https://charcoalexperience.com"), + alternates: { + canonical: "https://charcoalexperience.com", + }, + openGraph: { + title: "Charcoal Experience - Premium Fine Dining", + description: "Discover exceptional charcoal-grilled cuisine. Reserve your table at our upscale restaurant.", + siteName: "Charcoal Experience", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/intense-heat-close-up-fiery-charcoal_84443-72905.jpg", + alt: "Charcoal Experience Premium Restaurant", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Charcoal Experience - Premium Fine Dining", + description: "Exceptional charcoal-grilled cuisine awaits. Book your exclusive dining experience.", + images: ["http://img.b2bpic.net/free-photo/fried-piece-steak-plate_140725-5663.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +63,9 @@ export default function RootLayout({ return ( - + {children}