Merge version_21 into main #29

Merged
bender merged 1 commits from version_21 into main 2026-05-08 18:37:02 +00:00

View File

@@ -2,9 +2,9 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import ContactText from '@/components/sections/contact/ContactText';
import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
@@ -115,29 +115,25 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactCTA
tag="Contact Us"
title="Get Your Free Estimate Today"
description="Nathan Hupp and the Hupp Painting team are dedicated to serving the Dunedin, FL community with integrity and artisan quality. Reach out today to schedule your consultation."
<ContactText
text="Nathan Hupp and the Hupp Painting team are dedicated to serving the Dunedin, FL community with integrity and artisan quality. Reach out today to schedule your consultation."
buttons={[{ text: "Call Now: (727) 330-1821", href: "tel:7273301821" }]}
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={true}
className="relative bg-gradient-to-br from-blue-50 to-white"
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
<FooterBaseCard
logoText="Hupp Painting"
columns={[
{ title: "Navigation", items: [{ label: "Home", href: "#" }, { label: "Services", href: "#services" }, { label: "Contact", href: "#contact" }] },
{ title: "Location", items: [{ label: "Dunedin, FL", href: "#" }, { label: "Serving Pinellas County", href: "#" }] },
{ title: "Connect", items: [{ label: "(727) 330-1821", href: "tel:7273301821" }, { label: "hupppainting.com", href: "https://hupppainting.com" }] }
]}
bottomLeftText="© 2024 Hupp Painting. Owned by Nathan Hupp."
bottomRightText="Professional Painting Services"
copyrightText="© 2024 Hupp Painting. Owned by Nathan Hupp."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}