Update src/app/shop/page.tsx

This commit is contained in:
2026-05-22 17:47:17 +00:00
parent 4706e40d93
commit 0ae0880df8

View File

@@ -7,7 +7,7 @@ import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
export default function LandingPage() {
export default function ShopPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
@@ -25,24 +25,13 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Shop",
id: "/shop",
},
{
name: "Lookbook",
id: "/lookbook",
},
{
name: "About",
id: "/about",
},
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "Lookbook", id: "/lookbook" },
{ name: "About", id: "/about" },
]}
brandName="PLOTTWEAR"
button={{ text: "Shop", href: "/shop" }}
/>
</div>
@@ -53,12 +42,7 @@ export default function LandingPage() {
title="As Seen On"
description="The streets speak for themselves."
names={[
"Hypebeast",
"Vogue Street",
"Underground Mag",
"Future Fashion",
"Urban Cult",
]}
"Hypebeast", "Vogue Street", "Underground Mag", "Future Fashion", "Urban Cult"]}
/>
</div>
@@ -70,24 +54,8 @@ export default function LandingPage() {
title="Our Impact"
description="Numbers defining the movement."
metrics={[
{
id: "m1",
value: "5K+",
title: "Pieces Sold",
items: [
"Globally distributed",
"Limited editions",
],
},
{
id: "m2",
value: "12",
title: "Exclusive Drops",
items: [
"Quarterly releases",
"Monthly updates",
],
},
{ id: "m1", value: "5K+", title: "Pieces Sold", items: ["Globally distributed", "Limited editions"] },
{ id: "m2", value: "12", title: "Exclusive Drops", items: ["Quarterly releases", "Monthly updates"] },
]}
/>
</div>
@@ -95,17 +63,11 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="PLOTTWEAR"
leftLink={{
text: "Privacy Policy",
href: "#",
}}
rightLink={{
text: "Terms of Use",
href: "#",
}}
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Terms of Use", href: "#" }}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}