|
|
|
|
@@ -2,9 +2,9 @@
|
|
|
|
|
|
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
|
|
|
import ReactLenis from "lenis/react";
|
|
|
|
|
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
|
|
|
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
|
|
|
|
import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen';
|
|
|
|
|
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
|
|
|
|
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
|
|
|
|
import HeroPersonalLinks from '@/components/sections/hero/HeroPersonalLinks';
|
|
|
|
|
import MediaAbout from '@/components/sections/about/MediaAbout';
|
|
|
|
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
|
|
|
|
@@ -103,27 +103,27 @@ export default function LandingPage() {
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="contact" data-section="contact">
|
|
|
|
|
<ContactCTA
|
|
|
|
|
tag="Ready?"
|
|
|
|
|
title="Stop By Today"
|
|
|
|
|
description="Find us open 24/7 for your convenience."
|
|
|
|
|
buttons={[{ text: "Get Directions" }]}
|
|
|
|
|
useInvertedBackground={false}
|
|
|
|
|
background={{ variant: "plain" }}
|
|
|
|
|
/>
|
|
|
|
|
<ContactSplitForm
|
|
|
|
|
title="Contact Us"
|
|
|
|
|
description="We are here to answer your questions and provide support for our facilities."
|
|
|
|
|
inputs={[{ name: "name", type: "text", placeholder: "Full Name" }, { name: "email", type: "email", placeholder: "Email Address" }]}
|
|
|
|
|
textarea={{ name: "message", placeholder: "How can we help?" }}
|
|
|
|
|
imageSrc="http://img.b2bpic.net/free-photo/car-wash-station_1157-27220.jpg"
|
|
|
|
|
useInvertedBackground={false}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="footer" data-section="footer">
|
|
|
|
|
<FooterSimple
|
|
|
|
|
bottomLeftText="© 2024 Sun City Wash"
|
|
|
|
|
bottomRightText="All rights reserved."
|
|
|
|
|
columns={[
|
|
|
|
|
{ title: "Services", items: [{ label: "Wash Bays" }, { label: "Detailing Supplies" }] },
|
|
|
|
|
{ title: "Company", items: [{ label: "Privacy Policy" }, { label: "Terms of Service" }] }
|
|
|
|
|
]}
|
|
|
|
|
/>
|
|
|
|
|
<FooterBaseReveal
|
|
|
|
|
logoText="Sun City Wash"
|
|
|
|
|
columns={[
|
|
|
|
|
{ title: "Services", items: [{ label: "Wash Bays", href: "#" }, { label: "Detailing Supplies", href: "#" }] },
|
|
|
|
|
{ title: "Company", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }
|
|
|
|
|
]}
|
|
|
|
|
copyrightText="© 2024 Sun City Wash"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</ReactLenis>
|
|
|
|
|
</ThemeProvider>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|