diff --git a/src/app/page.tsx b/src/app/page.tsx index 74236ce..a50386f 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -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" } ] }, {