Update src/app/lookbook/page.tsx

This commit is contained in:
2026-05-22 17:47:16 +00:00
parent 291bf78980
commit 467ef953ff

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 LookbookPage() {
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="Street Icons"
description="Worn by those who create the culture."
names={[
"A-List",
"Street Legends",
"Global Icons",
"Creative Force",
"Movement Leaders",
]}
"A-List", "Street Legends", "Global Icons", "Creative Force", "Movement Leaders"]}
/>
</div>
@@ -70,24 +54,8 @@ export default function LandingPage() {
title="By The Numbers"
description="Capturing the essence of the city."
metrics={[
{
id: "m3",
value: "100+",
title: "Shoot Locations",
items: [
"Urban decay",
"Neon cityscapes",
],
},
{
id: "m4",
value: "24/7",
title: "Creative Flow",
items: [
"Always active",
"Never resting",
],
},
{ id: "m3", value: "100+", title: "Shoot Locations", items: ["Urban decay", "Neon cityscapes"] },
{ id: "m4", value: "24/7", title: "Creative Flow", items: ["Always active", "Never resting"] },
]}
/>
</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>
);
}
}