Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 50653cb108 | |||
| 0e24a87177 | |||
| 692555a617 |
@@ -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: `
|
||||||
|
|||||||
@@ -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."
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user