diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d12da85..fc2ac17 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,59 +1,32 @@ -import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import type { Metadata } from 'next'; +import { Geist, Geist_Mono } from 'next/font/google'; +import './globals.css'; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], +const geist = Geist({ + variable: '--font-geist-sans', + subsets: ['latin'], +}); + +const geistMono = Geist_Mono({ + variable: '--font-geist-mono', + subsets: ['latin'], }); export const metadata: Metadata = { - title: "Dum Maaro Dum - Bengali Restaurant in Hyderabad | Authentic Biryani", - description: "Authentic Bengali restaurant in Hafeezpet, Hyderabad. Award-winning Dum Biryani, Bengali specials & BBQ. 4.6★ rated. Dine-in, delivery & reservations available.", - keywords: "Bengali restaurant Hyderabad, Kolkata biryani Hyderabad, best mutton biryani Hafeezpet, Bengali food Serilingampalle, authentic biryani, Bengali cuisine, barbecue restaurant", - metadataBase: new URL("https://dummaarodum.com"), - alternates: { - canonical: "https://dummaarodum.com", - }, - openGraph: { - title: "Dum Maaro Dum - Authentic Bengali Restaurant in Hyderabad", - description: "Experience authentic Bengali flavors with our signature Dum Biryani and Bengali specials. 4.6★ rated restaurant in Hafeezpet.", - url: "https://dummaarodum.com", - siteName: "Dum Maaro Dum", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/top-view-pakistan-meal-arrangement_23-2148821511.jpg", - alt: "Authentic Dum Biryani", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Dum Maaro Dum - Bengali Restaurant Hyderabad", - description: "Authentic Bengali cuisine, premium ambience, exceptional service. 4.6★ rated.", - images: ["http://img.b2bpic.net/free-photo/top-view-pakistan-meal-arrangement_23-2148821511.jpg"], - }, - robots: { - index: true, - follow: true, - }, + title: 'Dum Maaro Dum - Authentic Bengali Restaurant in Hyderabad', + description: 'Experience authentic Bengali flavors with Dum Biryani, Bengali Specials & BBQ Favorites in Hyderabad. Premium ingredients, exceptional hospitality.', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +