Update src/app/contact/page.tsx

This commit is contained in:
2026-05-06 08:43:25 +00:00
parent 00aa698658
commit 484f593956

View File

@@ -7,7 +7,7 @@ import FooterBase from '@/components/sections/footer/FooterBase';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import TeamCardEleven from '@/components/sections/team/TeamCardEleven'; import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
export default function LandingPage() { export default function ContactPage() {
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="bounce-effect" defaultButtonVariant="bounce-effect"
@@ -25,37 +25,21 @@ export default function LandingPage() {
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
navItems={[ navItems={[
{ { name: "Home", id: "/" },
name: "Home", { name: "About Brand", id: "/about" },
id: "/", { name: "Private Label", id: "/private-label" },
}, { name: "Contact", id: "/contact" },
{
name: "About Brand",
id: "/about",
},
{
name: "Private Label",
id: "/private-label",
},
{
name: "Contact",
id: "/contact",
},
]} ]}
brandName="AsianBulls" brandName="AsianBulls"
button={{ button={{
text: "Shop Now", text: "Shop Now", href: "#products"}}
href: "#products",
}}
/> />
</div> </div>
<div id="contact-section" data-section="contact-section"> <div id="contact-section" data-section="contact-section">
<ContactCenter <ContactCenter
useInvertedBackground={false} useInvertedBackground={false}
background={{ background={{ variant: "plain" }}
variant: "plain",
}}
tag="Get In Touch" tag="Get In Touch"
title="Join the Bulls Community" title="Join the Bulls Community"
description="Have inquiries? Collaborate or get support today." description="Have inquiries? Collaborate or get support today."
@@ -71,19 +55,10 @@ export default function LandingPage() {
description="The visionaries behind AsianBulls." description="The visionaries behind AsianBulls."
groups={[ groups={[
{ {
id: "g1", id: "g1", groupTitle: "Management", members: [
groupTitle: "Management",
members: [
{ {
id: "mem1", id: "mem1", title: "CEO", subtitle: "Founder", detail: "Visionary leader.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-middle-age-male-dressed-leather-jacket-holds-motorcycle-helmet-grey-background_613910-2250.jpg"},
title: "CEO",
subtitle: "Founder",
detail: "Visionary leader.",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-middle-age-male-dressed-leather-jacket-holds-motorcycle-helmet-grey-background_613910-2250.jpg",
},
], ],
imageSrc: "http://img.b2bpic.net/free-photo/handsome-african-american-man-posing-inside-night-club-black-hat_627829-5513.jpg?_wi=2",
imageAlt: "Portrait of a middle age male dressed in a leather jacket holds motorcycle helmet over grey background.",
}, },
]} ]}
/> />
@@ -91,47 +66,11 @@ export default function LandingPage() {
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBase <FooterBase
columns={[
{
title: "Shop",
items: [
{
label: "Hoodies",
href: "#",
},
{
label: "T-Shirts",
href: "#",
},
{
label: "Shirts",
href: "#",
},
{
label: "Pants",
href: "#",
},
],
},
{
title: "Company",
items: [
{
label: "About Brand",
href: "/about",
},
{
label: "Private Label",
href: "/private-label",
},
{
label: "Contact",
href: "/contact",
},
],
},
]}
logoText="AsianBulls" logoText="AsianBulls"
columns={[
{ title: "Shop", items: [{ label: "Hoodies", href: "#" }, { label: "T-Shirts", href: "#" }, { label: "Shirts", href: "#" }, { label: "Pants", href: "#" }] },
{ title: "Company", items: [{ label: "About Brand", href: "/about" }, { label: "Private Label", href: "/private-label" }, { label: "Contact", href: "/contact" }] },
]}
/> />
</div> </div>
</ReactLenis> </ReactLenis>