diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b8ee944..714ad6d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}