Update src/app/contact/page.tsx
This commit is contained in:
@@ -7,7 +7,7 @@ import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="bounce-effect"
|
||||
@@ -25,37 +25,21 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "About Brand",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Private Label",
|
||||
id: "/private-label",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About Brand", id: "/about" },
|
||||
{ name: "Private Label", id: "/private-label" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="AsianBulls"
|
||||
button={{
|
||||
text: "Shop Now",
|
||||
href: "#products",
|
||||
}}
|
||||
text: "Shop Now", href: "#products"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-section" data-section="contact-section">
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Get In Touch"
|
||||
title="Join the Bulls Community"
|
||||
description="Have inquiries? Collaborate or get support today."
|
||||
@@ -71,19 +55,10 @@ export default function LandingPage() {
|
||||
description="The visionaries behind AsianBulls."
|
||||
groups={[
|
||||
{
|
||||
id: "g1",
|
||||
groupTitle: "Management",
|
||||
members: [
|
||||
id: "g1", groupTitle: "Management", members: [
|
||||
{
|
||||
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",
|
||||
},
|
||||
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"},
|
||||
],
|
||||
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">
|
||||
<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"
|
||||
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>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user