From 3f68cf1b875918aacd1695a001f74f8e6e072567 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 20:14:33 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 3b71118..4221689 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,7 +33,7 @@ export default function LandingPage() { { name: "Collections", id: "features" }, { name: "About", id: "about" }, { name: "Contact", id: "contact" }, - { name: "Cart", id: "cart" }, + { name: "All Shoes", id: "/puma-shoes" }, ]} button={{ text: "Explore Now", href: "products" }} /> @@ -45,7 +45,7 @@ export default function LandingPage() { description="" buttons={[ { text: "Shop Collection", href: "products" }, - { text: "Explore More", href: "/products-collection" }, + { text: "View All Puma Shoes", href: "/puma-shoes" }, ]} videoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZwu3DmYTEVGkV2zFru3woMC59/uploaded-1772814179118-13xvsegd.mp4" showDimOverlay={true} @@ -73,7 +73,7 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="default" useInvertedBackground={false} - buttons={[{ text: "View All Products", href: "/products-collection" }]} + buttons={[{ text: "View All Products", href: "/puma-shoes" }]} /> @@ -146,7 +146,7 @@ export default function LandingPage() { text="Ready to step into luxury? Join the JamShop community and experience premium footwear crafted for those who demand excellence." animationType="entrance-slide" buttons={[ - { text: "Start Shopping", href: "/products-collection" }, + { text: "Start Shopping", href: "/puma-shoes" }, { text: "Get in Touch", href: "#" }, ]} background={{ variant: "plain" }} @@ -161,10 +161,10 @@ export default function LandingPage() { columns={[ { title: "Shop", items: [ - { label: "New Arrivals", href: "/products-collection" }, - { label: "Collections", href: "/products-collection" }, - { label: "Best Sellers", href: "/products-collection" }, - { label: "Sale", href: "/products-collection" }, + { label: "New Arrivals", href: "/puma-shoes" }, + { label: "Collections", href: "/puma-shoes" }, + { label: "Best Sellers", href: "/puma-shoes" }, + { label: "Sale", href: "/puma-shoes" }, ], }, { -- 2.49.1 From 2c54ee2e4ae2179ed4d56af59b284863e377868d Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 20:14:34 +0000 Subject: [PATCH 2/3] Update src/app/products-collection/page.tsx --- src/app/products-collection/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/products-collection/page.tsx b/src/app/products-collection/page.tsx index 213d50f..91da734 100644 --- a/src/app/products-collection/page.tsx +++ b/src/app/products-collection/page.tsx @@ -27,7 +27,7 @@ export default function ProductsCollectionPage() { { name: "Collections", id: "/products-collection" }, { name: "About", id: "/" }, { name: "Contact", id: "/" }, - { name: "Cart", id: "/" }, + { name: "All Shoes", id: "/puma-shoes" }, ]} button={{ text: "Back Home", href: "/" }} /> -- 2.49.1 From 8d81cafa124671137852ccb52b1d8b55d85873cb Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 20:14:34 +0000 Subject: [PATCH 3/3] Add src/app/puma-shoes/page.tsx --- src/app/puma-shoes/page.tsx | 128 ++++++++++++++++++++++++++++++++++++ 1 file changed, 128 insertions(+) create mode 100644 src/app/puma-shoes/page.tsx diff --git a/src/app/puma-shoes/page.tsx b/src/app/puma-shoes/page.tsx new file mode 100644 index 0000000..64a3420 --- /dev/null +++ b/src/app/puma-shoes/page.tsx @@ -0,0 +1,128 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import ProductCardThree from "@/components/sections/product/ProductCardThree"; +import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; + +export default function PumaShoesPage() { + return ( + + + +
+ +
+ + +
+ ); +} -- 2.49.1