Update src/app/layout.tsx

This commit is contained in:
2026-03-10 05:48:14 +00:00
parent ff0a8ecf2c
commit 69f402e7a6

View File

@@ -1,39 +1,20 @@
import type { Metadata } from "next";
import { DM_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Bomb Tacos | Authentic Mexican Street Food", description: "Explode your taste buds with authentic Mexican tacos, burritos, and quesadillas made with premium ingredients. Fresh, delicious, and affordable.", keywords: "tacos, mexican food, al pastor, carnitas, street food, authentic, fresh, delivery", openGraph: {
title: "Bomb Tacos | Authentic Mexican Street Food", description: "Experience authentic Mexican flavors with fresh, hand-crafted tacos made with premium ingredients.", type: "website", siteName: "Bomb Tacos"},
twitter: {
card: "summary_large_image", title: "Bomb Tacos | Authentic Mexican Street Food", description: "Fresh, delicious, explosive tacos made with authentic recipes."},
};
title: "Bomb Tacos - Authentic Mexican Street Food", description: "Experience explosive flavors with Bomb Tacos. Authentic Mexican street food with premium ingredients and incredible taste."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${dmSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1401,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}