Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 815fa73eb2 | |||
| 9786962907 | |||
| b669d5763e | |||
| b856e1ae75 | |||
| 60bc3a72cb | |||
| d6f237dab6 | |||
| 7b1ab0bea0 | |||
| 9337d530a6 | |||
| b151d65622 | |||
| 5bc83cb93a |
@@ -10,8 +10,8 @@ import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTe
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
|
||||
import { Award, Car, MapPin, ShieldCheck, Target, Trophy } from "lucide-react";
|
||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||
import { Award, Car, MapPin, ShieldCheck, Trophy, Target } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -34,7 +34,7 @@ export default function LandingPage() {
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Gallery", id: "gallery" },
|
||||
{ name: "Reviews", id: "testimonials" },
|
||||
{ name: "Soon to Come", id: "soon-to-come" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Jasper's wash lab"
|
||||
@@ -91,11 +91,11 @@ export default function LandingPage() {
|
||||
<div id="services" data-section="services">
|
||||
<PricingCardNine
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{ id: "full-detail", title: "Full Detail Package", price: "$175", period: "Best Value", features: ["Hand wash & dry", "Clay bar treatment", "Wax/sealant", "Steam interior clean", "Leather conditioning"], button: { text: "Book Now", href: "#contact" }, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cj9467erUouycv8NdtCMhMDRzY/uploaded-1776888222083-ma95l4o6.jpg" },
|
||||
{ id: "interior-clean", title: "Interior Deep Clean", price: "$100", period: "Focused Clean", features: ["Stain removal", "Upholstery shampoo", "Odor elimination", "Crevice dusting", "Glass cleaning"], button: { text: "Book Now", href: "#contact" }, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cj9467erUouycv8NdtCMhMDRzY/uploaded-1776888261135-kpgfotbc.webp" },
|
||||
{ id: "interior-clean", title: "Interior Deep Clean", price: "$100", period: "Focused Clean", features: ["Stain removal", "Upholstery shampoo", "Odor elimination", "Crevice dusting", "Glass cleaning"], button: { text: "Book Now", href: "#contact" }, imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Cj9467erUthcv8NdtCMhMDRzY/uploaded-1776888261135-kpgfotbc.webp" },
|
||||
{ id: "express-wash", title: "Express Wash & Shine", price: "$60", period: "Maintenance", features: ["Exterior hand wash", "Wheel cleaning", "Windows", "Light interior vacuum"], button: { text: "Book Now", href: "#contact" }, imageSrc: "http://img.b2bpic.net/free-photo/close-up-car-care-process_23-2149193587.jpg?_wi=2" }
|
||||
]}
|
||||
title="Premium Services & Pricing"
|
||||
@@ -122,25 +122,14 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardSixteen
|
||||
<div id="reviews" data-section="reviews">
|
||||
<TestimonialCardSix
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="What Your Neighbors Are Saying"
|
||||
description="Trusted by the Prosper community to deliver elite results."
|
||||
testimonials={[
|
||||
{ id: "1", name: "Michael S.", role: "Local Resident", company: "Prosper", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/upbeat-young-woman-celebrating-winning-triumphing-sitting-street-bench-laughing-holding_1258-206035.jpg?_wi=2" },
|
||||
{ id: "2", name: "Sarah L.", role: "Client", company: "Prosper", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/smiling-happy-asian-woman-entrepreneur-recommending-cafe-showing-okay-ok-sign-approval_1258-199352.jpg" },
|
||||
{ id: "3", name: "David K.", role: "Customer", company: "Prosper", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/business-woman-green-suit-using-phone-outside-street_1303-29546.jpg" },
|
||||
{ id: "4", name: "Jessica M.", role: "Homeowner", company: "Prosper", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/cheerful-young-businesswoman-headset_74855-2661.jpg" },
|
||||
{ id: "5", name: "Brian P.", role: "Driver", company: "Prosper", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/man-checking-out-new-car_23-2148130202.jpg" },
|
||||
]}
|
||||
kpiItems={[
|
||||
{ value: "100+", label: "Cars Detailed" },
|
||||
{ value: "5.0", label: "Avg. Rating" },
|
||||
{ value: "100%", label: "Satisfaction" },
|
||||
]}
|
||||
title="Reviews soon to come"
|
||||
description="Real feedback from our satisfied clients will appear here soon."
|
||||
testimonials={[]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -182,4 +171,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user