Merge version_4 into main #3

Merged
bender merged 1 commits from version_4 into main 2026-04-17 04:09:08 +00:00

View File

@@ -12,7 +12,7 @@ import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import { Award, CheckCircle, Shield } from "lucide-react";
import { Award, CheckCircle, Shield, Calendar, Fish, MapPin, Star } from "lucide-react";
export default function LandingPage() {
return (
@@ -35,6 +35,7 @@ export default function LandingPage() {
{ name: "Home", id: "hero" },
{ name: "About", id: "about" },
{ name: "Services", id: "features" },
{ name: "Season", id: "seasonal" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
]}
@@ -80,18 +81,33 @@ export default function LandingPage() {
/>
</div>
<div id="seasonal" data-section="seasonal">
<FeatureCardMedia
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={true}
features={[
{ id: "s1", title: "Winter Ice Fishing", description: "Guided fishing excursions on local frozen lakes with heated shelter and equipment provided.", tag: "Winter Special", imageSrc: "http://img.b2bpic.net/free-photo/ice-fishing-winter-lake-shack-sunset_1150-18456.jpg" },
{ id: "s2", title: "Local Attractions", description: "Explore hidden gems near the coast with our curated seasonal tourism guide.", tag: "Activity", imageSrc: "http://img.b2bpic.net/free-photo/scenic-view-mountain-lake-sunset_1150-18423.jpg" },
{ id: "s3", title: "Spring Trail Maintenance", description: "Join our community cleanup and trail restoration efforts to prep for the season.", tag: "Community", imageSrc: "http://img.b2bpic.net/free-photo/hiking-trail-spring-blossoms_1150-19234.jpg" },
]}
title="Four-Season Offerings"
description="From winter fishing to spring trail preparation, enjoy the best of our local environment all year round."
/>
</div>
<div id="metrics" data-section="metrics">
<MetricCardThree
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
metrics={[
{ id: "m1", title: "Surfaces Restored", value: "1,500+", icon: CheckCircle },
{ id: "m2", title: "Client Satisfaction", value: "100%", icon: Award },
{ id: "m3", title: "Professional Experience", value: "12 Yrs", icon: Shield },
{ id: "m1", title: "Service Sites", value: "2,500+", icon: MapPin },
{ id: "m2", title: "Amenities Available", value: "45+", icon: Award },
{ id: "m3", title: "Total Experience", value: "15 Yrs", icon: Shield },
]}
title="Proven Track Record"
description="We deliver exceptional results through meticulous attention to detail and a commitment to professional cleaning standards."
title="Key Service Statistics"
description="Quantifying our dedication to community service and property maintenance across the region."
/>
</div>
@@ -103,10 +119,11 @@ export default function LandingPage() {
testimonials={[
{ id: "1", name: "Alex T.", handle: "@alext", testimonial: "The attention to detail was incredible. My driveway looks brand new again.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-woman-using-digital-tablet_1170-373.jpg" },
{ id: "2", name: "Jordan H.", handle: "@jordanh", testimonial: "Truly professional service from start to finish. Highly recommended for any exterior work.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/happy-young-woman-enjoying-cleaning_1262-5190.jpg" },
{ id: "3", name: "Casey L.", handle: "@caseyl", testimonial: "Their winter guide and fishing tips were a game changer! Great local company.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/man-wearing-winter-coat-smiling_1150-18500.jpg" },
]}
showRating={true}
title="Client Success Stories"
description="See why homeowners trust us to maintain their property's curb appeal."
title="Guest Reviews"
description="Hear directly from our satisfied guests and local community members."
/>
</div>
@@ -116,7 +133,7 @@ export default function LandingPage() {
useInvertedBackground={false}
faqs={[
{ id: "q1", title: "Do you use high pressure on everything?", content: "No. We use soft-wash technology for delicate surfaces to prevent damage while still achieving deep cleanliness." },
{ id: "q2", title: "Are your detergents safe for plants?", content: "Yes, we use environmentally friendly, biodegradable agents that are safe for your pets and landscaping." },
{ id: "q2", title: "Can I book seasonal activities online?", content: "Yes, our four-season activity calendar and booking system are available on our website." },
{ id: "q3", title: "What areas do you serve?", content: "We cover the entire local metro area. Contact us with your address for a service estimate." },
]}
imageSrc="http://img.b2bpic.net/free-photo/soft-focus-water-drops-come-out-hose-sailor-captain-yacht-owner-washes-salty-residue-from-sail-mainsail-spinnaker-when-sailboat-is-docked-yard-marina_346278-360.jpg"
@@ -132,7 +149,7 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
names={[
"Certified Exterior Specialist", "Professional Clean Alliance", "Licensed & Insured", "Five-Star Rated"
"Certified Exterior Specialist", "Professional Clean Alliance", "Licensed & Insured", "Five-Star Rated"
]}
title="Recognized Excellence"
description="Our commitment to quality service is recognized by leading home maintenance and professional cleaning bodies."
@@ -155,7 +172,7 @@ export default function LandingPage() {
<FooterBaseReveal
logoText="PureWash"
columns={[
{ title: "Navigation", items: [{ label: "Home", href: "#" }, { label: "About", href: "#about" }, { label: "Services", href: "#features" }] },
{ title: "Navigation", items: [{ label: "Home", href: "#" }, { label: "About", href: "#about" }, { label: "Services", href: "#features" }, { label: "Seasonal", href: "#seasonal" }] },
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] },
]}
/>