3 Commits

Author SHA1 Message Date
bdc76492a0 Update src/app/page.tsx 2026-04-28 17:42:07 +00:00
68d41365b6 Update src/app/page.tsx 2026-04-28 17:41:33 +00:00
aee5df7e84 Merge version_2 into main
Merge version_2 into main
2026-04-28 17:37:11 +00:00

View File

@@ -2,7 +2,7 @@
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 ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia'; import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
import FooterSimple from '@/components/sections/footer/FooterSimple'; import FooterSimple from '@/components/sections/footer/FooterSimple';
@@ -188,15 +188,18 @@ export default function LandingPage() {
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactText <ContactCenter
useInvertedBackground={true} tag="Contact Us"
title="Get Your Free Estimate"
description="Fill out the form below and we will contact you via email as soon as possible."
background={{ background={{
variant: "plain"}} variant: "plain"}}
text="Ready to get started? Contact Ironclad Roofing for your free estimate today." useInvertedBackground={false}
buttons={[ onSubmit={(email) => {
{ console.log("Submitted:", email);
text: "Contact Us Now", href: "mailto:info@ironcladroofing.com"}, window.location.href = `mailto:info@ironcladroofing.com?subject=New%20Estimate%20Request&body=Please%20contact%20me%20at%20${email}%20for%20a%20free%20estimate.`;
]} }}
buttonText="Submit Request"
/> />
</div> </div>