Merge version_3 into main #5
@@ -1,11 +1,17 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
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 = {
|
||||
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({
|
||||
children,
|
||||
@@ -14,7 +20,9 @@ export default function RootLayout({
|
||||
}) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
|
||||
@@ -24,7 +24,8 @@ import {
|
||||
Cake,
|
||||
Gift,
|
||||
Briefcase,
|
||||
MapPin
|
||||
MapPin,
|
||||
Calendar
|
||||
} from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
@@ -67,11 +68,14 @@ export default function LandingPage() {
|
||||
imageAlt="Elegant restaurant garden dining area"
|
||||
textPosition="bottom-left"
|
||||
showBlur={true}
|
||||
showDimOverlay={true}
|
||||
showDimOverlay={false}
|
||||
buttons={[
|
||||
{ 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: "Reserve Table", href: "https://wa.me/919993448166?text=Hi%20Shree%20Manbhavan%21%20I%20would%20like%20to%20reserve%20a%20table."
|
||||
}
|
||||
]}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user