Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3b1aef0060 | |||
| e6e224c452 | |||
| 2251c5cf72 | |||
| 2649af20cf | |||
| 5ee8f4e072 |
@@ -3,13 +3,13 @@
|
|||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import { Wrench, Search, Settings, Zap } from "lucide-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 FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwentySix';
|
||||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||||
import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial';
|
import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial';
|
||||||
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
|
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
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() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -129,41 +129,28 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
<div id="testimonials" data-section="testimonials">
|
||||||
<TestimonialCardSix
|
<TestimonialCardFifteen
|
||||||
animationType="slide-up"
|
testimonial="Reliable, professional, and efficient service. They fixed my plumbing issues in no time! Truly top-tier work."
|
||||||
textboxLayout="default"
|
rating={5}
|
||||||
|
author="Alice J."
|
||||||
|
ratingAnimation="slide-up"
|
||||||
|
avatarsAnimation="slide-up"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
avatars={[
|
||||||
{
|
{ src: "http://img.b2bpic.net/free-photo/side-view-smiley-drag-queen-indoors_23-2149556820.jpg", alt: "Customer" }
|
||||||
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"},
|
|
||||||
]}
|
]}
|
||||||
title="What Our Clients Say"
|
|
||||||
description="Hear from our satisfied customers in Nashville, NC."
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactCTA
|
<ContactSplit
|
||||||
useInvertedBackground={true}
|
tag="Get in Touch"
|
||||||
background={{
|
|
||||||
variant: "sparkles-gradient"}}
|
|
||||||
tag="Ready to Help"
|
|
||||||
title="Need a Reliable Plumber?"
|
title="Need a Reliable Plumber?"
|
||||||
description="Call Chappell Plumbing Solutions LLC today for a free quote on your project or immediate emergency assistance."
|
description="Our expert team is ready to help. Reach out to schedule a service or request an emergency repair today."
|
||||||
buttons={[
|
background={{ variant: "sparkles-gradient" }}
|
||||||
{
|
useInvertedBackground={true}
|
||||||
text: "Call Now", href: "tel:555-0123"},
|
imageSrc="http://img.b2bpic.net/free-photo/plumber-holding-clock_1368-6309.jpg?_wi=2"
|
||||||
{
|
mediaPosition="right"
|
||||||
text: "Get a Free Quote", href: "#"},
|
|
||||||
]}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -198,4 +185,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user