Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 775fc4dc95 | |||
| ffe763ebcb | |||
| 585811a9e2 |
@@ -2,10 +2,10 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
||||
import FeatureBento from '@/components/sections/feature/FeatureBento';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
||||
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
@@ -170,17 +170,21 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "plain" }}
|
||||
text="Ready to transform your lawn?"
|
||||
buttons={[{ text: "Call (951) 990-8713", href: "tel:9519908713" }]}
|
||||
/>
|
||||
<ContactSplitForm
|
||||
title="Contact Us"
|
||||
description="Located in Winchester, California. Reach out for a free consultation or a quote on your project."
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Full Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Email Address", required: true },
|
||||
{ name: "phone", type: "tel", placeholder: "Phone Number", required: true }
|
||||
]}
|
||||
textarea={{ name: "message", placeholder: "How can we help you?", required: true }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=tfl4il"
|
||||
<FooterBaseCard
|
||||
logoText="Octavio Contreras Lawn Services"
|
||||
columns={[
|
||||
{
|
||||
@@ -190,8 +194,9 @@ export default function LandingPage() {
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{ label: "Call: (951) 990-8713", href: "tel:9519908713" }
|
||||
title: "Contact", items: [
|
||||
{ label: "(951) 990-8713", href: "tel:9519908713" },
|
||||
{ label: "Winchester, CA", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
@@ -200,4 +205,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user