Update src/app/contact/page.tsx

This commit is contained in:
2026-05-12 14:49:51 +00:00
parent 1768570831
commit 98f57d6ad9

View File

@@ -26,26 +26,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Available Fish",
id: "/fish",
},
{
name: "Gallery",
id: "/gallery",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Available Fish", id: "/fish" },
{ name: "Gallery", id: "/gallery" },
{ name: "Contact", id: "/contact" },
]}
brandName="FinHaven"
/>
@@ -55,8 +40,7 @@ export default function LandingPage() {
<ContactSplit
useInvertedBackground={false}
background={{
variant: "plain",
}}
variant: "plain"}}
tag="Contact"
title="Get In Touch"
description="Ready to bring home new tropical friends? Contact us for availability. All orders are for collection only in Durbanville. We will confirm your details and provide directions."
@@ -69,16 +53,12 @@ export default function LandingPage() {
<ContactCTA
useInvertedBackground={false}
background={{
variant: "plain",
}}
variant: "plain"}}
tag="Get Started"
title="Ready to buy?"
description="Confirm stock and arrange pickup."
buttons={[
{
text: "Contact Now",
href: "/contact",
},
{ text: "Contact Now", href: "/contact" },
]}
/>
</div>
@@ -93,16 +73,8 @@ export default function LandingPage() {
mediaAnimation="none"
faqsAnimation="slide-up"
faqs={[
{
id: "aq1",
title: "How to pickup?",
content: "You will receive location details upon confirming order.",
},
{
id: "aq2",
title: "What payment?",
content: "Payment is taken at collection.",
},
{ id: "aq1", title: "How to pickup?", content: "You will receive location details upon confirming order." },
{ id: "aq2", title: "What payment?", content: "Payment is taken at collection." },
]}
/>
</div>
@@ -112,37 +84,17 @@ export default function LandingPage() {
logoText="FinHaven"
columns={[
{
title: "Quick Links",
items: [
{
label: "About",
href: "/about",
},
{
label: "Fish",
href: "/fish",
},
{
label: "Gallery",
href: "/gallery",
},
{
label: "Contact",
href: "/contact",
},
title: "Quick Links", items: [
{ label: "About", href: "/about" },
{ label: "Fish", href: "/fish" },
{ label: "Gallery", href: "/gallery" },
{ label: "Contact", href: "/contact" },
],
},
{
title: "Policy",
items: [
{
label: "Collection Only",
href: "#",
},
{
label: "Privacy Policy",
href: "#",
},
title: "Policy", items: [
{ label: "Collection Only", href: "#" },
{ label: "Privacy Policy", href: "#" },
],
},
]}
@@ -152,4 +104,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}