Update src/app/shop/page.tsx
This commit is contained in:
@@ -4,10 +4,10 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ShopPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
@@ -23,24 +23,12 @@ export default function LandingPage() {
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Shop",
|
||||
id: "/shop",
|
||||
},
|
||||
{
|
||||
name: "Register",
|
||||
id: "/register",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "Register", id: "/register" },
|
||||
{ name: "About", id: "/about" },
|
||||
]}
|
||||
brandName="NextGen SP"
|
||||
/>
|
||||
@@ -54,34 +42,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Saved by Grace Tee",
|
||||
price: "R200",
|
||||
variant: "Black/White",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BecCjvhDpYWzoIT1tFDAH5uDyt/a-high-quality-studio-photography-shot-o-1774852892085-0e482bb6.png?_wi=1",
|
||||
},
|
||||
id: "p1", name: "Saved by Grace Tee", price: "R200", variant: "Black/White", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BecCjvhDpYWzoIT1tFDAH5uDyt/a-high-quality-studio-photography-shot-o-1774852892085-0e482bb6.png?_wi=1"},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Faith Over Fear Tee",
|
||||
price: "R200",
|
||||
variant: "Black/White",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BecCjvhDpYWzoIT1tFDAH5uDyt/a-high-quality-studio-photography-shot-o-1774852893809-950c3d1d.png",
|
||||
},
|
||||
id: "p2", name: "Faith Over Fear Tee", price: "R200", variant: "Black/White", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BecCjvhDpYWzoIT1tFDAH5uDyt/a-high-quality-studio-photography-shot-o-1774852893809-950c3d1d.png"},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Faith Cross Cap",
|
||||
price: "R150",
|
||||
variant: "One Size",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BecCjvhDpYWzoIT1tFDAH5uDyt/a-high-quality-studio-photography-shot-o-1774852893464-d60caf4a.png",
|
||||
},
|
||||
id: "p3", name: "Faith Cross Cap", price: "R150", variant: "One Size", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BecCjvhDpYWzoIT1tFDAH5uDyt/a-high-quality-studio-photography-shot-o-1774852893464-d60caf4a.png"},
|
||||
]}
|
||||
title="Support the NextGen SP"
|
||||
description="Look great while representing our mission."
|
||||
buttons={[
|
||||
{
|
||||
text: "Order via WhatsApp",
|
||||
href: "https://wa.me/27738558483",
|
||||
},
|
||||
text: "Order via WhatsApp", href: "https://wa.me/27738558483"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user