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" }, ], }, { 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: "/" }} /> 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 ( + + + +
+ +
+ + +
+ ); +}