Merge version_2 into main #4

Merged
bender merged 1 commits from version_2 into main 2026-04-06 19:05:36 +00:00

View File

@@ -3,13 +3,13 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import { Wrench, Search, Settings, Zap } from "lucide-react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial';
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
export default function LandingPage() {
return (
@@ -129,41 +129,28 @@ export default function LandingPage() {
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardSix
animationType="slide-up"
textboxLayout="default"
<TestimonialCardFifteen
testimonial="Reliable, professional, and efficient service. They fixed my plumbing issues in no time! Truly top-tier work."
rating={5}
author="Alice J."
ratingAnimation="slide-up"
avatarsAnimation="slide-up"
useInvertedBackground={false}
testimonials={[
{
id: "t1", name: "Alice J.", handle: "@alicej", testimonial: "Reliable and fast service. Very professional technicians.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-drag-queen-indoors_23-2149556820.jpg"},
{
id: "t2", name: "Bob M.", handle: "@bobm", testimonial: "Best plumbing service in the area, period.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-manual-worker-warehouse_329181-12798.jpg"},
{
id: "t3", name: "Charlie D.", handle: "@charlied", testimonial: "Fixed my pipe installation in a breeze. Expert team!", imageSrc: "http://img.b2bpic.net/free-photo/man-ensures-products-are-pesticides-free_482257-81573.jpg"},
{
id: "t4", name: "David L.", handle: "@davidl", testimonial: "Transparency and great pricing. Fantastic work.", imageSrc: "http://img.b2bpic.net/free-photo/jolly-staff-members-pitching-investment-strategy-manager_482257-123599.jpg"},
{
id: "t5", name: "Eva R.", handle: "@evar", testimonial: "Responsive emergency support, truly saved the day.", imageSrc: "http://img.b2bpic.net/free-photo/smile-face-green-ball-with-golden-five-stars-customer-client-survey-satisfaction-after-use-product-service-concept-by-3d-render_616485-67.jpg"},
avatars={[
{ src: "http://img.b2bpic.net/free-photo/side-view-smiley-drag-queen-indoors_23-2149556820.jpg", alt: "Customer" }
]}
title="What Our Clients Say"
description="Hear from our satisfied customers in Nashville, NC."
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
useInvertedBackground={true}
background={{
variant: "sparkles-gradient"}}
tag="Ready to Help"
<ContactSplit
tag="Get in Touch"
title="Need a Reliable Plumber?"
description="Call Chappell Plumbing Solutions LLC today for a free quote on your project or immediate emergency assistance."
buttons={[
{
text: "Call Now", href: "tel:555-0123"},
{
text: "Get a Free Quote", href: "#"},
]}
description="Our expert team is ready to help. Reach out to schedule a service or request an emergency repair today."
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={true}
imageSrc="http://img.b2bpic.net/free-photo/plumber-holding-clock_1368-6309.jpg?_wi=2"
mediaPosition="right"
/>
</div>
@@ -198,4 +185,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}