Update src/app/page.tsx

This commit is contained in:
2026-03-06 07:55:34 +00:00
parent 23aa9541a8
commit 8af1c32671

View File

@@ -31,6 +31,7 @@ export default function LandingPage() {
brandName="SS Hyderabad Biryani"
navItems={[
{ name: "Menu", id: "menu" },
{ name: "Popular Menu", id: "/products" },
{ name: "About", id: "about" },
{ name: "Reviews", id: "reviews" },
{ name: "Location", id: "location" },
@@ -248,11 +249,12 @@ export default function LandingPage() {
columns={[
{
title: "Navigate", items: [
{ label: "Home", href: "#" },
{ label: "Menu", href: "#menu" },
{ label: "About", href: "#about" },
{ label: "Reviews", href: "#reviews" },
{ label: "Location", href: "#location" }
{ label: "Home", href: "/" },
{ label: "Menu", href: "/#menu" },
{ label: "Popular Menu", href: "/products" },
{ label: "About", href: "/#about" },
{ label: "Reviews", href: "/#reviews" },
{ label: "Location", href: "/#location" }
]
},
{