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" } ] }, { diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx new file mode 100644 index 0000000..be60d48 --- /dev/null +++ b/src/app/products/page.tsx @@ -0,0 +1,118 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import { Star, ArrowRight } from 'lucide-react'; + +export default function ProductsPage() { + return ( + + + + + + + + ); +}