Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 07f1b587f8 | |||
| 507e5cc31d |
@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
|
|||||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||||
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
||||||
import FeatureCardTwentyEight from '@/components/sections/feature/FeatureCardTwentyEight';
|
import FeatureCardTwentyEight from '@/components/sections/feature/FeatureCardTwentyEight';
|
||||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||||
import HeroCentered from '@/components/sections/hero/HeroCentered';
|
import HeroCentered from '@/components/sections/hero/HeroCentered';
|
||||||
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
|
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
|
||||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
@@ -151,23 +151,38 @@ export default function LandingPage() {
|
|||||||
<ContactSplitForm
|
<ContactSplitForm
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
title="Need a Professional Plumber?"
|
title="Need a Professional Plumber?"
|
||||||
description="Reach out today and let us handle your plumbing issues."
|
description="Reach out today and let us handle your plumbing issues. Our team is available 24/7 to answer your call, email, or inquiries via our form."
|
||||||
inputs={[
|
inputs={[
|
||||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||||
{ name: "email", type: "email", placeholder: "Your Email", required: true },
|
{ name: "email", type: "email", placeholder: "Your Email", required: true },
|
||||||
]}
|
]}
|
||||||
textarea={{ name: "message", placeholder: "How can we help?", rows: 4, required: true }}
|
textarea={{ name: "message", placeholder: "How can we help? Include details like your suburb and preferred time.", rows: 4, required: true }}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoReveal
|
<FooterBaseReveal
|
||||||
logoText="Pearler Plumbing"
|
logoText="Pearler Plumbing"
|
||||||
leftLink={{ text: "Privacy Policy", href: "#" }}
|
columns={[
|
||||||
rightLink={{ text: "Contact Us", href: "#contact" }}
|
{
|
||||||
|
title: "Services", items: [
|
||||||
|
{ label: "Leak Detection", href: "#services" },
|
||||||
|
{ label: "Hot Water Repair", href: "#services" },
|
||||||
|
{ label: "Drain Clearing", href: "#services" },
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Company", items: [
|
||||||
|
{ label: "About Us", href: "#about" },
|
||||||
|
{ label: "Reviews", href: "#testimonials" },
|
||||||
|
{ label: "Contact", href: "#contact" },
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
copyrightText="© 2024 Pearler Plumbing. All rights reserved."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user