From ee9572d7213587d74ae49e0f09078554c2de9cbb Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 20:26:58 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f74e26e..58fb169 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -32,6 +32,7 @@ export default function LandingPage() { brandName="ItemStore" navItems={[ { name: "Shop", id: "products" }, + { name: "Products", id: "/products" }, { name: "About", id: "about" }, { name: "Reviews", id: "testimonials" }, { name: "Contact", id: "contact" }, @@ -198,10 +199,10 @@ export default function LandingPage() { columns={[ { title: "Shop", items: [ - { label: "All Products", href: "#products" }, - { label: "New Arrivals", href: "#products" }, - { label: "Collections", href: "#products" }, - { label: "Sale Items", href: "#products" }, + { label: "All Products", href: "/products" }, + { label: "New Arrivals", href: "/products" }, + { label: "Collections", href: "/products" }, + { label: "Sale Items", href: "/products" }, ], }, { -- 2.49.1 From a6f8e56f0beb8bac1df2fe19d534874e21acccf9 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 20:27:00 +0000 Subject: [PATCH 2/2] Add src/app/products/page.tsx --- src/app/products/page.tsx | 123 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 123 insertions(+) create mode 100644 src/app/products/page.tsx diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx new file mode 100644 index 0000000..dd1e7d9 --- /dev/null +++ b/src/app/products/page.tsx @@ -0,0 +1,123 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import HeroOverlay from "@/components/sections/hero/HeroOverlay"; +import ProductCardFour from "@/components/sections/product/ProductCardFour"; +import FooterMedia from "@/components/sections/footer/FooterMedia"; + +export default function ProductsPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +} -- 2.49.1