import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import { Public_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 publicSans = Public_Sans({ variable: "--font-public-sans", subsets: ["latin"], }); export const metadata: Metadata = { title: "Flame & Fusion - Bold NYC Street Food & Fusion Flavors", description: "Experience bold NYC street food with fiery Naga sauce at Flame & Fusion. Loaded platters, fries, wings & more. Order on DoorDash or visit us today!", keywords: "NYC street food, Naga sauce, loaded fries, chicken platters, fusion food, DoorDash delivery, restaurant", metadataBase: new URL("https://flameandfusion.com"), alternates: { canonical: "https://flameandfusion.com" }, openGraph: { title: "Flame & Fusion - Bold Heat. NYC Street Flavor.", description: "Taste the fusion. Feel the flame. Loaded platters with signature Naga sauce. Order on DoorDash or visit now!", url: "https://flameandfusion.com", siteName: "Flame & Fusion", type: "website", images: [ { url: "http://img.b2bpic.net/free-photo/fried-rice-served-with-hot-syrup_157027-4061.jpg", alt: "Flame & Fusion signature platter with Naga sauce" } ] }, twitter: { card: "summary_large_image", title: "Flame & Fusion - NYC Street Food", description: "Bold flavors, loaded platters, legendary Naga sauce. Order now!", images: ["http://img.b2bpic.net/free-photo/fried-rice-served-with-hot-syrup_157027-4061.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}