Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-04 14:13:10 +00:00
2 changed files with 23 additions and 51 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} antialiased`}>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1421,7 +1394,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -193,8 +193,8 @@ export default function HomePage() {
background={{ variant: "rotated-rays-animated" }}
useInvertedBackground={false}
inputPlaceholder="Enter your email"
buttonText="Reserve Now"
termsText="We'll send you booking confirmation. Call +91 76809 60113 for immediate reservations."
buttonText="Get Email Confirmation"
termsText="We'll email your reservation link instantly. Call +91 76809 60113 for immediate booking."
/>
</div>
@@ -240,4 +240,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}