From b59822905373fc83d7e61f6cf73d990b2b98534a Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 14:07:52 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 54 ++++++---------------------------------------- 1 file changed, 7 insertions(+), 47 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 12df591..55c4ce6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,20 @@ 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"; +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 publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); +const inter = Inter({ 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 - } -}; + title: "Flame & Fusion - NYC Street Food with Bold Naga Flavor", description: "Experience authentic NYC street food elevated with our signature Naga sauce. Fresh, bold, unforgettable."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}