diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 90f1176..9decb95 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1426 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Raleway } 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 raleway = Raleway({ - variable: "--font-raleway", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Manti Express - Authentic Uzbek Dumplings in Brooklyn | Open 24/7", description: "Handmade Uzbek dumplings, samsa, and traditional baked bread in Brooklyn, NY. Open 24 hours. Order online or call (347) 607-3166. 4.6★ rated.", keywords: "uzbek restaurant brooklyn, manti dumplings brooklyn, samsa brooklyn, uzbek food near me, 24 hour restaurant brooklyn, dumpling delivery brooklyn", metadataBase: new URL("https://mantiexpress.local"), - alternates: { - canonical: "https://mantiexpress.local" - }, - openGraph: { - title: "Manti Express - Authentic Uzbek Dumplings in Brooklyn", description: "Fresh handmade manti dumplings and traditional Uzbek cuisine. Open 24 hours. Order now!", url: "https://mantiexpress.local", siteName: "Manti Express", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/platter-georgian-khinkali-served-with-spicy-sauce_140725-8654.jpg", alt: "Fresh handmade Uzbek dumplings" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Manti Express - Uzbek Dumplings Brooklyn", description: "Authentic handmade dumplings. Open 24/7. Order online or call today!", images: ["http://img.b2bpic.net/free-photo/platter-georgian-khinkali-served-with-spicy-sauce_140725-8654.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Manti Express - Authentic Uzbek Dumplings in Brooklyn", description: "Fresh handmade manti, samsa, and traditional baked dishes served 24 hours. Experience authentic Central Asian comfort food in Brooklyn."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -