Update src/app/about/page.tsx

This commit is contained in:
2026-05-22 17:47:15 +00:00
parent f0e0c905ae
commit 291bf78980

View File

@@ -7,7 +7,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
export default function LandingPage() {
export default function AboutPage() {
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>
@@ -55,26 +44,12 @@ export default function LandingPage() {
description="Meet the team behind the grit."
groups={[
{
id: "g1",
groupTitle: "Leadership",
members: [
id: "g1", groupTitle: "Leadership", members: [
{
id: "t1",
title: "Founder",
subtitle: "Creative Director",
detail: "Architect of the brand vision.",
imageSrc: "http://img.b2bpic.net/free-photo/well-dressed-young-male-model-posing-steps-with-gently-smile-indoor-photo-curious-african-guy-wears-hat_197531-22071.jpg",
},
id: "t1", title: "Founder", subtitle: "Creative Director", detail: "Architect of the brand vision.", imageSrc: "http://img.b2bpic.net/free-photo/well-dressed-young-male-model-posing-steps-with-gently-smile-indoor-photo-curious-african-guy-wears-hat_197531-22071.jpg"},
{
id: "t2",
title: "Lead Designer",
subtitle: "Product Innovation",
detail: "Defining the future of wear.",
imageSrc: "http://img.b2bpic.net/free-photo/pleased-well-dressed-male-model-sitting-stairs-fashionable-african-guy-enjoying-photoshoot-steps_197531-22070.jpg",
},
id: "t2", title: "Lead Designer", subtitle: "Product Innovation", detail: "Defining the future of wear.", imageSrc: "http://img.b2bpic.net/free-photo/pleased-well-dressed-male-model-sitting-stairs-fashionable-african-guy-enjoying-photoshoot-steps_197531-22070.jpg"},
],
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-teen-party_23-2149239096.jpg?_wi=2",
imageAlt: "Well-dressed young male model posing on steps with gently smile. Indoor photo of curious african guy wears hat.",
},
]}
/>
@@ -87,29 +62,18 @@ export default function LandingPage() {
title="Join Our Community"
description="Partnering with the world's most authentic voices."
names={[
"Vanguard Lab",
"Street Soul",
"Urban Collective",
"Future Wear",
"Neo Street",
]}
"Vanguard Lab", "Street Soul", "Urban Collective", "Future Wear", "Neo Street"]}
/>
</div>
<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>
);
}
}