diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8e7fabc..56e3804 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Montserrat } 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 montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Taco El Niño - Authentic Mexican Food Truck", description: "Discover authentic Mexican street tacos at Taco El Niño. Fresh ingredients, traditional recipes, and exceptional taste. Find us today!", keywords: "tacos, Mexican food, food truck, street food, carnitas, al pastor, fish tacos", openGraph: { - title: "Taco El Niño - Authentic Mexican Street Tacos", description: "Experience authentic Mexican tacos crafted with fresh ingredients and traditional recipes at Taco El Niño.", siteName: "Taco El Niño", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/mexican-food-composition_23-2147640314.jpg", alt: "Taco El Niño signature tacos"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Taco El Niño - Authentic Mexican Tacos", description: "Fresh, authentic, delicious. Find Taco El Niño food truck today!", images: ["http://img.b2bpic.net/free-photo/mexican-food-composition_23-2147640314.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Taco El Niño", description: "Authentic Mexican street tacos crafted with premium ingredients and traditional recipes."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}