4 Commits

Author SHA1 Message Date
7c0943e838 Update src/app/page.tsx 2026-05-11 12:44:53 +00:00
0d458e76e8 Merge version_3 into main
Merge version_3 into main
2026-05-10 18:42:48 +00:00
e61cca8923 Update src/app/page.tsx 2026-05-10 18:42:42 +00:00
8bf4d8e4cd Merge version_2 into main
Merge version_2 into main
2026-05-09 08:57:54 +00:00

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureBento from '@/components/sections/feature/FeatureBento';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
@@ -137,13 +137,16 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={false}
background={{ variant: "gradient-bars" }}
<ContactSplitForm
title="Ready for Help?"
description="Contact us today for a professional solution to your plumbing problems."
buttonText="Get Quote"
tag="Contact Us"
inputs={[
{ name: "name", type: "text", placeholder: "Full Name", required: true },
{ name: "email", type: "email", placeholder: "Email Address", required: true }
]}
textarea={{ name: "message", placeholder: "How can we help?", rows: 4 }}
buttonText="Send Request"
useInvertedBackground={false}
/>
</div>
@@ -151,7 +154,7 @@ export default function LandingPage() {
<FooterLogoReveal
logoText="GoldFlow Plumbing"
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Contact Us", href: "#contact" }}
rightLink={{ text: "Terms of Service", href: "#" }}
/>
</div>
</ReactLenis>