3 Commits

Author SHA1 Message Date
b715c0175c Update src/app/page.tsx 2026-04-30 21:59:41 +00:00
fc2530c8f6 Merge version_2 into main
Merge version_2 into main
2026-04-30 21:57:49 +00:00
48d482e883 Merge version_1 into main
Merge version_1 into main
2026-04-30 21:56:25 +00:00

View File

@@ -2,10 +2,10 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText'; import ContactCTA from '@/components/sections/contact/ContactCTA';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen'; import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import FooterBase from '@/components/sections/footer/FooterBase';
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
@@ -158,25 +158,42 @@ export default function LandingPage() {
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactText <ContactCTA
useInvertedBackground={false} tag="Get In Touch"
background={{ variant: "rotated-rays-static" }} title="Ready to Start Your Project?"
text="Ready to redefine your outdoor space? Reach out for a consultation regarding your next project." description="Reach out to discuss your fencing or deck restoration needs with our expert team today."
buttons={[ buttons={[{ text: "Book Consultation", href: "mailto:hello@loewens.com" }]}
{ text: "Contact Us Now", href: "mailto:hello@loewens.com" }, background={{ variant: "sparkles-gradient" }}
]} useInvertedBackground={true}
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterLogoEmphasis <FooterBase
columns={[ logoText="Loewens Fencing"
{ items: [{ label: "About", href: "#about" }, { label: "Services", href: "#features" }, { label: "Projects", href: "#product" }] }, columns={[
{ items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] }, {
{ items: [{ label: "Instagram", href: "#" }, { label: "LinkedIn", href: "#" }] }, title: "Company", items: [
]} { label: "About", href: "#about" },
logoText="Loewens Fencing" { label: "Services", href: "#features" },
/> { label: "Projects", href: "#product" }
]
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" }
]
},
{
title: "Connect", items: [
{ label: "Instagram", href: "#" },
{ label: "LinkedIn", href: "#" }
]
}
]}
copyrightText="© 2025 Loewens Fencing & Deck Repairs"
/>
</div> </div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>