diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 97a524f..62760af 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1426 +1,20 @@ import type { Metadata } from "next"; -import { Montserrat, Inter } from "next/font/google"; -import { Halant } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Shree Manbhavan Garden Restaurant - Pure Veg Family Restaurant", description: "45 years of authentic pure vegetarian dining in Bhopal. Indian, South Indian & Chinese cuisine. Online ordering, catering & event hosting available. Visit our beautiful garden restaurant on Kolar Road.", keywords: "pure vegetarian restaurant Bhopal, Indian food delivery, thali near me, family restaurant Kolar Road, catering services, event hosting", metadataBase: new URL("https://shreemanbhavan.com"), - alternates: { - canonical: "https://shreemanbhavan.com" - }, - openGraph: { - title: "Shree Manbhavan Garden Restaurant - 45 Years of Trust", description: "Authentic pure vegetarian dining with family atmosphere, catering and events. Open 11 AM - 11:30 PM daily.", url: "https://shreemanbhavan.com", siteName: "Shree Manbhavan Garden Restaurant", images: [ - { - url: "http://img.b2bpic.net/free-photo/serving-tables-wedding-old-restaurant_8353-9579.jpg", alt: "Shree Manbhavan Garden Restaurant" - } - ], - type: "website" - }, - twitter: { - card: "summary_large_image", title: "Shree Manbhavan - Pure Veg Family Restaurant", description: "45 years of authentic vegetarian cuisine. Dine with us or book events & catering.", images: ["http://img.b2bpic.net/free-photo/serving-tables-wedding-old-restaurant_8353-9579.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Shree Manbhavan Garden Restaurant", description: "Pure Veg Family Restaurant | Serving Delicious Food for 45 Years"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -