diff --git a/src/app/page.tsx b/src/app/page.tsx index 918893e..84420da 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -32,6 +32,7 @@ export default function LandingPage() { navItems={[ { name: "Home", id: "hero" }, { name: "About", id: "about" }, + { name: "Products", id: "products" }, { name: "Menu", id: "menu" }, { name: "Reserve", id: "reserve" }, ]} @@ -46,7 +47,7 @@ export default function LandingPage() { description="Curated Vibes. Exquisite Flavours." buttons={[ { text: "Reserve a Table", href: "#reserve" }, - { text: "Explore Menu", href: "#menu" }, + { text: "Explore Products", href: "/products" }, ]} imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3D7Du6rFtKxuLYPKgJzphz8mrPQ/uploaded-1777631156096-mhomeoez.jpg" avatars={[ @@ -77,21 +78,6 @@ export default function LandingPage() { /> -
- -
- -
- -
-
diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx new file mode 100644 index 0000000..4112fe5 --- /dev/null +++ b/src/app/products/page.tsx @@ -0,0 +1,81 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; + +export default function ProductsPage() { + return ( + + + + +
+ +
+ +
+ +
+ + +
+
+ ); +}