diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7a841c5..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,2784 +0,0 @@ -import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "The Greek Wagon | Authentic Greek Street Food", description: "Fresh Mediterranean street food on the go. Premium gyros, souvlaki, and falafel with authentic Greek flavors. Order now from The Greek Wagon.", keywords: "greek food truck, gyro, souvlaki, mediterranean, street food, pita, falafel, greek cuisine", metadataBase: new URL("https://www.thegreekwagon.com"), - alternates: { - canonical: "https://www.thegreekwagon.com" - }, - openGraph: { - title: "The Greek Wagon | Authentic Greek Street Food", description: "Experience authentic Mediterranean cuisine. Fresh gyros, souvlaki, and crispy fries made daily.", url: "https://www.thegreekwagon.com", siteName: "The Greek Wagon", type: "website" - }, - twitter: { - card: "summary_large_image", title: "The Greek Wagon | Authentic Greek Street Food", description: "Fresh Mediterranean street food on the go. Premium gyros, souvlaki, and falafel with authentic Greek flavors. Order now from The Greek Wagon." - }, - robots: { - index: true, - follow: true - } -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -