diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 19a3513..53a2847 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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: "Zarah Food - Authentic Biryani in Melvisharam", description: "Authentic Night-Time Biryani in Melvisharam with Seeraga Samba rice. Open during Ramzan for the best biryani experience."}; + title: "Zarah Food - Authentic Biryani in Melvisharam", description: "Best night-time biryani in Melvisharam and Ranipet with authentic Seeraga Samba rice. Order via WhatsApp or call now."}; export default function RootLayout({ children, @@ -14,7 +20,9 @@ export default function RootLayout({ }) { return ( -
{children} + + {children} + @@ -205,41 +224,53 @@ export default function HomePage() { { items: [ { - label: "Call Now", href: "tel:+919876543210"}, + label: "Call Now", href: "tel:+919876543210" + }, { - label: "WhatsApp Order", href: "https://wa.me/919876543210"}, + label: "WhatsApp Order", href: "https://wa.me/919876543210" + }, { - label: "Get Directions", href: "https://maps.google.com/?q=5+High+School+St+Melvisharam+Tamil+Nadu"}, + label: "Get Directions", href: "https://maps.google.com/?q=5+High+School+St+Melvisharam+Tamil+Nadu" + }, ], }, { items: [ { - label: "Home", href: "/"}, + label: "Home", href: "/" + }, { - label: "Menu", href: "/menu"}, + label: "Menu", href: "/menu" + }, { - label: "Gallery", href: "/gallery"}, + label: "Gallery", href: "/gallery" + }, ], }, { items: [ { - label: "Reviews", href: "/reviews"}, + label: "Reviews", href: "/reviews" + }, { - label: "Contact", href: "/contact"}, + label: "Contact", href: "/contact" + }, { - label: "Privacy", href: "#"}, + label: "Privacy", href: "#" + }, ], }, { items: [ { - label: "Melvisharam", href: "#"}, + label: "Melvisharam", href: "#" + }, { - label: "Ranipet", href: "#"}, + label: "Ranipet", href: "#" + }, { - label: "Vellore", href: "#"}, + label: "Vellore", href: "#" + }, ], }, ]} @@ -248,4 +279,4 @@ export default function HomePage() { ); -} \ No newline at end of file +}