6 Commits

Author SHA1 Message Date
4f2685b14b Merge version_2 into main
Merge version_2 into main
2026-03-04 14:07:56 +00:00
32a2cf7224 Update src/app/page.tsx 2026-03-04 14:07:52 +00:00
b598229053 Update src/app/layout.tsx 2026-03-04 14:07:52 +00:00
a375910004 Merge version_1 into main
Merge version_1 into main
2026-03-04 14:06:48 +00:00
0dd6fd046e Merge version_1 into main
Merge version_1 into main
2026-03-04 14:05:46 +00:00
1741dd53d3 Merge version_1 into main
Merge version_1 into main
2026-03-04 14:04:11 +00:00
2 changed files with 8 additions and 48 deletions

View File

@@ -1,59 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import { Public_Sans } from "next/font/google"; import "@/styles/globals.css";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const inter = Inter({ subsets: ["latin"] });
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 = { 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"), 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."};
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({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={inter.className}>{children}
<body
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1421,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -113,7 +113,7 @@ export default function LandingPage() {
} }
]} ]}
buttons={[ buttons={[
{ text: "View Full Menu", href: "#contact" } { text: "View Full Menu", href: "#menu" }
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
/> />