diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3d367cc..2dde6b9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1422 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Roboto } 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 roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Mummy's Kitchen - Rooftop Café in Patna | Affordable Dining", description: "Experience Patna's best rooftop café at Mummy's Kitchen. Authentic Indian cuisine, delicious snacks, and great ambiance. Book your table now. 4.1★ rating.", keywords: "rooftop café Patna, best café Kidwaipuri, affordable dining Patna, Indian restaurant, table booking", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Mummy's Kitchen - Patna's Cozy Rooftop Café", description: "Enjoy authentic Indian cuisine and rooftop dining. Book now or call 08877370009.", siteName: "Mummy's Kitchen", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/terrace-with-wooden-table-plants_1137-267.jpg", alt: "Mummy's Kitchen Rooftop Café"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Mummy's Kitchen - Rooftop Café Patna", description: "Premium rooftop dining with authentic Indian food. Book your table today!", images: ["http://img.b2bpic.net/free-photo/terrace-with-wooden-table-plants_1137-267.jpg"], - }, -}; + title: "Mummy's Kitchen | Patna's Cozy Rooftop Café", description: "Authentic Indian dishes and delicious snacks at Mummy's Kitchen rooftop café in Patna. Experience affordable excellence with great food and stunning views."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -