3 Commits

Author SHA1 Message Date
a6a01241aa Update src/app/page.tsx 2026-03-07 09:26:25 +00:00
cd31c7f618 Update src/app/layout.tsx 2026-03-07 09:26:24 +00:00
24fb57970b Merge version_4 into main
Merge version_4 into main
2026-03-07 09:21:20 +00:00
2 changed files with 12 additions and 51 deletions

View File

@@ -1,59 +1,21 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Figtree } 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 figtree = Figtree({
variable: "--font-figtree", subsets: ["latin"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Nirva Cafe & Restaurant - Best Family Restaurant & Party Hall in Meerut", description: "Experience premium family dining and celebrate special moments at Nirva Cafe. 4.8★ rated restaurant with party hall, elegant ambiance, and fine dining in Meerut. Book your table today!", keywords: "best cafe in Meerut, family restaurant Meerut, party hall Meerut, fine dining Meerut, best place for birthday party in Meerut, cafe near me, restaurant reservations", metadataBase: new URL("https://nirvacafe.com"), title: "Nirva Cafe - Best Family Restaurant & Party Hall in Meerut", description: "Experience premium dining and celebrate at Nirva Cafe. Best family restaurant with cozy ambiance, authentic Italian cuisine, specialty coffee, and elegant party hall facilities in Meerut.", keywords: "restaurant Meerut, cafe Meerut, party hall, family restaurant, Italian food, coffee shop", authors: [{ name: "Nirva Cafe" }],
alternates: {
canonical: "https://nirvacafe.com"
},
openGraph: { openGraph: {
title: "Nirva Cafe & Restaurant - Best Family Restaurant & Party Hall in Meerut", description: "Premium family-friendly cafe and fine dining restaurant in Meerut. 4.8★ rating with spacious party hall for celebrations. Reserve your table now!", url: "https://nirvacafe.com", siteName: "Nirva Cafe & Restaurant", type: "website", images: [ title: "Nirva Cafe - Best Family Restaurant & Party Hall in Meerut", description: "Premium family restaurant with party hall facilities in Meerut. Authentic cuisine, specialty coffee, and elegant celebrations.", type: "website"},
{ robots: "index, follow"};
url: "http://img.b2bpic.net/free-photo/restaurant-interior_1127-3394.jpg", alt: "Nirva Cafe - Elegant Interior"
},
],
},
twitter: {
card: "summary_large_image", title: "Nirva Cafe & Restaurant - Best Family Restaurant & Party Hall in Meerut", description: "Premium family dining and party venue in Meerut. 4.8★ rated. Book your table or party hall today!", images: ["http://img.b2bpic.net/free-photo/restaurant-interior_1127-3394.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body>
<body {children}
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1421,7 +1383,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -176,7 +176,7 @@ export default function LandingPage() {
tagAnimation="slide-up" tagAnimation="slide-up"
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
buttons={[{ text: "See All Reviews", href: "https://www.google.com/search?q=Nirva+Cafe+%26+Restaurant+Meerut+reviews" }]} buttons={[{ text: "See All Reviews", href: "https://www.google.com/search?q=Nirva+Cafe+Meerut+reviews", onClick: () => window.open("https://www.google.com/search?q=Nirva+Cafe+Meerut+reviews", "_blank") }]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
/> />
</div> </div>
@@ -301,4 +301,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }