4 Commits

Author SHA1 Message Date
4f9d0082b5 Merge version_3 into main
Merge version_3 into main
2026-03-08 03:27:54 +00:00
50653cb108 Update src/app/page.tsx 2026-03-08 03:27:51 +00:00
0e24a87177 Update src/app/layout.tsx 2026-03-08 03:27:50 +00:00
692555a617 Merge version_2 into main
Merge version_2 into main
2026-03-08 03:23:34 +00:00
2 changed files with 18 additions and 6 deletions

View File

@@ -1,11 +1,17 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Inter } from "next/font/google"; import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css"; import "./globals.css";
const inter = Inter({ 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 = { export const metadata: Metadata = {
title: "Shree Manbhavan Garden Restaurant", description: "Pure Veg Family Restaurant | Serving Delicious Food for 45 Years"}; title: "Shree Manbhavan Garden Restaurant", description: "Pure Veg Family Restaurant serving delicious Indian, South Indian, and Chinese cuisine for 45 years"};
export default function RootLayout({ export default function RootLayout({
children, children,
@@ -14,7 +20,9 @@ export default function RootLayout({
}) { }) {
return ( return (
<html lang="en"> <html lang="en">
<body className={inter.className}>{children} <body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `

View File

@@ -24,7 +24,8 @@ import {
Cake, Cake,
Gift, Gift,
Briefcase, Briefcase,
MapPin MapPin,
Calendar
} from "lucide-react"; } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
@@ -67,11 +68,14 @@ export default function LandingPage() {
imageAlt="Elegant restaurant garden dining area" imageAlt="Elegant restaurant garden dining area"
textPosition="bottom-left" textPosition="bottom-left"
showBlur={true} showBlur={true}
showDimOverlay={true} showDimOverlay={false}
buttons={[ buttons={[
{ text: "View Menu", href: "#menu" }, { text: "View Menu", href: "#menu" },
{ {
text: "Order on WhatsApp", href: "https://wa.me/919993448166?text=Hello%20Shree%20Manbhavan%21%20I%20would%20like%20to%20place%20an%20order." text: "Order on WhatsApp", href: "https://wa.me/919993448166?text=Hello%20Shree%20Manbhavan%21%20I%20would%20like%20to%20place%20an%20order."
},
{
text: "Reserve Table", href: "https://wa.me/919993448166?text=Hi%20Shree%20Manbhavan%21%20I%20would%20like%20to%20reserve%20a%20table."
} }
]} ]}
/> />