Update src/app/contact/page.tsx

This commit is contained in:
2026-04-20 09:33:35 +00:00
parent 36af3058cb
commit d19c12e9f8

View File

@@ -25,22 +25,10 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Shop",
id: "/shop",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Shop", id: "/shop" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="90style"
/>
@@ -49,16 +37,9 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactText
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
text="Let's connect. Whether you have inquiries about our drops or need support with an order, we're here."
buttons={[
{
text: "Start Conversation",
href: "/contact",
},
]}
buttons={[{ text: "Start Conversation", href: "/contact" }]}
/>
</div>
@@ -70,25 +51,9 @@ export default function LandingPage() {
description="What our supporters are saying."
testimonials={[
{
id: "t1",
name: "Jordan P.",
date: "Oct 2023",
title: "Amazing quality",
quote: "The retro jersey feels authentic and premium. Best drop this year.",
tag: "Verified",
avatarSrc: "http://img.b2bpic.net/free-photo/front-view-sad-boy-holding-ball_23-2149748388.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-male-white-t-shirt-colorful-coat-posing-showing-his-clothes-pink-background_140725-26961.jpg",
},
id: "t1", name: "Jordan P.", date: "Oct 2023", title: "Amazing quality", quote: "The retro jersey feels authentic and premium. Best drop this year.", tag: "Verified", avatarSrc: "http://img.b2bpic.net/free-photo/front-view-sad-boy-holding-ball_23-2149748388.jpg", imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-male-white-t-shirt-colorful-coat-posing-showing-his-clothes-pink-background_140725-26961.jpg"},
{
id: "t2",
name: "Casey L.",
date: "Nov 2023",
title: "Style icon",
quote: "My jacket is the best thing I own in my wardrobe.",
tag: "Fan",
avatarSrc: "http://img.b2bpic.net/free-photo/dark-skinned-bearded-hipster-guy-dressed-black-hoodie-sports-shorts-holds-skateboard-while-sitting-stairs-ghetto_613910-6253.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/displeased-man-basketball-player-holds-ball-looks-unhappily-camera_273609-46265.jpg",
},
id: "t2", name: "Casey L.", date: "Nov 2023", title: "Style icon", quote: "My jacket is the best thing I own in my wardrobe.", tag: "Fan", avatarSrc: "http://img.b2bpic.net/free-photo/dark-skinned-bearded-hipster-guy-dressed-black-hoodie-sports-shorts-holds-skateboard-while-sitting-stairs-ghetto_613910-6253.jpg", imageSrc: "http://img.b2bpic.net/free-photo/displeased-man-basketball-player-holds-ball-looks-unhappily-camera_273609-46265.jpg"},
]}
/>
</div>
@@ -97,36 +62,12 @@ export default function LandingPage() {
<FooterBaseCard
logoText="90style"
columns={[
{
title: "Company",
items: [
{
label: "About",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
title: "Shop",
items: [
{
label: "Jerseys",
href: "/shop",
},
{
label: "Jackets",
href: "/shop",
},
],
},
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] },
{ title: "Shop", items: [{ label: "Jerseys", href: "/shop" }, { label: "Jackets", href: "/shop" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}