diff --git a/src/app/page.tsx b/src/app/page.tsx index 41794e6..2bd4431 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -45,7 +45,7 @@ export default function LandingPage() { description="" buttons={[ { text: "Shop Collection", href: "products" }, - { text: "Explore More", href: "features" }, + { text: "Explore More", href: "/products-collection" }, ]} 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: "shop" }]} + buttons={[{ text: "View All Products", href: "/products-collection" }]} /> @@ -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" }, + { text: "Start Shopping", href: "/products-collection" }, { text: "Get in Touch", href: "#" }, ]} background={{ variant: "plain" }} @@ -161,10 +161,10 @@ export default function LandingPage() { columns={[ { title: "Shop", items: [ - { label: "New Arrivals", href: "#" }, - { label: "Collections", href: "#" }, - { label: "Best Sellers", href: "#" }, - { label: "Sale", href: "#" }, + { label: "New Arrivals", href: "/products-collection" }, + { label: "Collections", href: "/products-collection" }, + { label: "Best Sellers", href: "/products-collection" }, + { label: "Sale", href: "/products-collection" }, ], }, { diff --git a/src/app/products-collection/page.tsx b/src/app/products-collection/page.tsx new file mode 100644 index 0000000..dda99ca --- /dev/null +++ b/src/app/products-collection/page.tsx @@ -0,0 +1,170 @@ +"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 ProductsCollectionPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +}