Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1f13244b47 | |||
| ef22c06d8e | |||
| 27d2e0320c | |||
| 0db5ffd26c | |||
| bf699d9d43 |
103
src/app/page.tsx
103
src/app/page.tsx
@@ -12,7 +12,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
|
||||
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||
import { Leaf, Shield, Sparkles, Zap } from "lucide-react";
|
||||
import { Leaf, Shield, Sparkles, Zap, Star } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -37,8 +37,8 @@ export default function LandingPage() {
|
||||
{ name: "Testimonials", id: "#testimonials" },
|
||||
{ name: "Contact", id: "#contact" }
|
||||
]}
|
||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ClgvKl6yJnBOzUtWC2bvRWerHa/uploaded-1776965843606-tbuqlcbu.png"
|
||||
brandName="Family Lavage"
|
||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ClgvKl6yJnBOzUtWC2bvRWerHa/uploaded-1776966165801-id64q7f2.png"
|
||||
brandName="Family Lavage Group"
|
||||
button={{
|
||||
text: "Get Membership", href: "#membership"}}
|
||||
/>
|
||||
@@ -47,33 +47,23 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardTestimonial
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Elite Car Care, Membership Style."
|
||||
description="Join Family Lavage Group for unlimited car washes and professional maintenance at an affordable monthly price."
|
||||
title="Professional Membership Car Care"
|
||||
description="Family Lavage Group: Dedicated to keeping your vehicle in showroom condition with our elite, membership-focused subscription service."
|
||||
testimonials={[
|
||||
{ name: "John Doe", handle: "@johndoe", testimonial: "Best car wash experience ever! Membership saves me money.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-smiling_93675-133804.jpg" },
|
||||
{ name: "Jane Smith", handle: "@janesmith", testimonial: "Always sparkling clean. Highly recommended for busy families.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/beautiful-happy-woman-with-long-hair-smiles-gladfully-has-clean-natural-skin-ni-make-up-feels-happy-wears-casual-jumper-poses-against-pink-background-positive-human-face-expressions-feelings_273609-58332.jpg" },
|
||||
{ name: "Mark Wilson", handle: "@mwilson", testimonial: "Convenient, fast, and high quality service every single time.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-outdoors_23-2149042108.jpg" },
|
||||
{ name: "Sarah Lee", handle: "@slee", testimonial: "Love the unlimited access. My car never looked better.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/businessman-smiling-looking-camera_23-2148112827.jpg" },
|
||||
{ name: "David Brown", handle: "@dbrown", testimonial: "Professional staff and great results. The membership is a no-brainer.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portait-handsome-european-elderly-man-smiles-positively-enjoys-retirement-wears-shirt-spectacles-has-perfect-white-teeth-isolated-beige-studio-wall_273609-44196.jpg" }
|
||||
{ name: "John Doe", handle: "@johndoe", testimonial: "Membership saves me money and my car looks new everyday!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-smiling_93675-133804.jpg" },
|
||||
{ name: "Jane Smith", handle: "@janesmith", testimonial: "Best service in town for families on the go.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/beautiful-happy-woman-with-long-hair-smiles-gladfully-has-clean-natural-skin-ni-make-up-feels-happy-wears-casual-jumper-poses-against-pink-background-positive-human-face-expressions-feelings_273609-58332.jpg" }
|
||||
]}
|
||||
buttons={[
|
||||
{ text: "Start Membership", href: "#membership" },
|
||||
{ text: "View Membership Plans", href: "#membership" },
|
||||
{ text: "Learn More", href: "#about" }
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/blurred-expensive-cars_1203-829.jpg"
|
||||
avatars={[
|
||||
{ src: "http://img.b2bpic.net/free-photo/ladies-car-salon-woman-buying-car-elegant-woman-blue-dress-manager-helps-client_1157-45025.jpg", alt: "Customer 1" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/family-car-salon-woman-buying-car-little-african-girl-with-mther-manager-with-clients_1157-45006.jpg", alt: "Customer 2" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/woman-charging-electro-car-by-her-house_1303-17808.jpg", alt: "Customer 3" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/two-stylish-women-car-salon_1157-20863.jpg", alt: "Customer 4" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/splash-water-foam_23-2147797881.jpg", alt: "Customer 5" }
|
||||
]}
|
||||
marqueeItems={[
|
||||
{ type: "text", text: "Unlimited Washes" },
|
||||
{ type: "text-icon", text: "Eco-Friendly", icon: Leaf },
|
||||
{ type: "text", text: "Rapid Service" },
|
||||
{ type: "text-icon", text: "Top Tier Protection", icon: Shield },
|
||||
{ type: "text", text: "Customer Satisfaction" }
|
||||
{ type: "text", text: "Expert Team" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -81,9 +71,9 @@ export default function LandingPage() {
|
||||
<div id="about" data-section="about">
|
||||
<MediaAbout
|
||||
useInvertedBackground={false}
|
||||
title="Quality Care Since Day One"
|
||||
description="Family Lavage Group offers premium automotive care using professional-grade supplies. We treat every vehicle like our own, ensuring a spotless finish and protecting your investment for the long haul."
|
||||
buttons={[{ text: "View Locations", href: "#contact" }]}
|
||||
title="Committed to Your Car's Excellence"
|
||||
description="Family Lavage Group was founded on the principle that premium car care should be convenient and professional. Our membership programs ensure your vehicle gets the attention it deserves every single day."
|
||||
buttons={[{ text: "Join Today", href: "#membership" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/satisfied-customer-handshaking-with-female-mechanic-auto-repair-shop_637285-7758.jpg"
|
||||
/>
|
||||
</div>
|
||||
@@ -95,18 +85,18 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Premium Wash Tech", description: "State-of-the-art tunnel systems for a perfect finish.", media: {
|
||||
title: "Elite Wash Technology", description: "State-of-the-art tunnel systems tailored for gentle, thorough cleaning.", media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicate-bubbles-azure-white-foam_23-2147798181.jpg", imageAlt: "Wash Tunnel"},
|
||||
items: [
|
||||
{ icon: Sparkles, text: "Nano Wax Finish" },
|
||||
{ icon: Zap, text: "High Pressure Rinse" },
|
||||
{ icon: Shield, text: "Clear Coat Protection" }
|
||||
{ icon: Sparkles, text: "Nano Wax Gloss" },
|
||||
{ icon: Zap, text: "Express Drying" },
|
||||
{ icon: Shield, text: "Ceramic Protection" }
|
||||
],
|
||||
reverse: false
|
||||
}
|
||||
]}
|
||||
title="Why Choose Our Service?"
|
||||
description="Advanced technology meets expert care for an unmatched wash experience."
|
||||
title="The Family Lavage Standard"
|
||||
description="Professional maintenance meets convenient scheduling."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -116,12 +106,12 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
plans={[
|
||||
{ id: "bronze", badge: "Entry", price: "$29/mo", subtitle: "Basic wash, monthly access.", buttons: [{ text: "Select Plan", href: "#" }], features: ["Unlimited Washes", "Wheel Cleaning", "Air Dry"] },
|
||||
{ id: "silver", badge: "Popular", price: "$49/mo", subtitle: "Everything in Bronze plus extras.", buttons: [{ text: "Select Plan", href: "#" }], features: ["Unlimited Washes", "Hand Wax", "Interior Vacuum", "Tire Shine"] },
|
||||
{ id: "gold", badge: "Elite", price: "$79/mo", subtitle: "Full premium care service.", buttons: [{ text: "Select Plan", href: "#" }], features: ["Unlimited Washes", "Clay Bar Treatment", "Engine Detail", "Deep Interior Cleaning"] }
|
||||
{ id: "bronze", badge: "Essentials", price: "$29/mo", subtitle: "Quick, clean, and convenient.", buttons: [{ text: "Select Plan", href: "#" }], features: ["Unlimited Washes", "Rim Rinse", "Standard Dry"] },
|
||||
{ id: "silver", badge: "Most Popular", badgeIcon: Star, price: "$49/mo", subtitle: "Complete care for active vehicles.", buttons: [{ text: "Select Plan", href: "#" }], features: ["Unlimited Washes", "Full Hand Wax", "Interior Vacuum", "Tire Shine"] },
|
||||
{ id: "gold", badge: "Elite Care", price: "$79/mo", subtitle: "The premium membership experience.", buttons: [{ text: "Select Plan", href: "#" }], features: ["Unlimited Washes", "Clay Bar Treatment", "Engine Cleaning", "Deep Interior Detailing"] }
|
||||
]}
|
||||
title="Flexible Membership Tiers"
|
||||
description="Choose the wash plan that fits your lifestyle."
|
||||
title="Choose Your Membership"
|
||||
description="Membership made easy for every car owner."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -132,14 +122,12 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{ id: "1", name: "Sarah J.", role: "Owner", company: "Local Biz", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/employee-working-with-trendy-clothes_482257-78860.jpg" },
|
||||
{ id: "2", name: "Mike R.", role: "Driver", company: "Transport Ltd", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-beautiful-smiling-blond-female-trendy-summer-clothes-carefree-woman-posing-near-yellow-wall-studio-positive-model-having-fun-indoors-cheerful-happy_158538-22541.jpg" },
|
||||
{ id: "3", name: "Emily D.", role: "Mom", company: "Family Life", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-excited-person-portrait_23-2151186716.jpg" },
|
||||
{ id: "4", name: "Kevin L.", role: "Executive", company: "Tech Corp", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/happy-excited-girl-with-flying-darkhaired-girl-is-turn-around-camera-while-walking-down-road-with-green-yellow-trees-happy-girl-walking-city_291650-2409.jpg" },
|
||||
{ id: "5", name: "Linda P.", role: "Student", company: "Uni", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/smiling-senior-businessman-sitting-stairs_1262-3109.jpg" }
|
||||
{ id: "1", name: "Sarah J.", role: "Daily Commuter", company: "City Heights", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/employee-working-with-trendy-clothes_482257-78860.jpg" },
|
||||
{ id: "2", name: "Mike R.", role: "Owner", company: "Transport Corp", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-beautiful-smiling-blond-female-trendy-summer-clothes-carefree-woman-posing-near-yellow-wall-studio-positive-model-having-fun-indoors-cheerful-happy_158538-22541.jpg" },
|
||||
{ id: "3", name: "Emily D.", role: "Family", company: "Suburbia", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-excited-person-portrait_23-2151186716.jpg" }
|
||||
]}
|
||||
title="What Our Members Say"
|
||||
description="Trusted by hundreds of local drivers for daily car care."
|
||||
description="Real feedback from our satisfied membership community."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -148,15 +136,14 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{ id: "faq-1", title: "Can I cancel my membership?", content: "Yes, you can cancel your membership at any time with no penalties." },
|
||||
{ id: "faq-2", title: "Does it work at all locations?", content: "Your membership card is accepted at all of our professional locations." },
|
||||
{ id: "faq-3", title: "What if I get a new car?", content: "Just update your plate number through our member portal easily." }
|
||||
{ id: "faq-1", title: "How do I start?", content: "Simply sign up for a plan through our online portal, and your vehicle is eligible for service immediately." },
|
||||
{ id: "faq-2", title: "Is the subscription flexible?", content: "Yes, modify or cancel your subscription at any time directly from your user dashboard." },
|
||||
{ id: "faq-3", title: "Can I add more cars?", content: "Family membership options are available for households with multiple vehicles." }
|
||||
]}
|
||||
title="Commonly Asked Questions"
|
||||
description="Learn more about how our subscription membership works."
|
||||
title="Membership Insights"
|
||||
description="Everything you need to know about Family Lavage Group subscriptions."
|
||||
faqsAnimation="blur-reveal"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/splash-water-foam_23-2147797881.jpg"
|
||||
mediaAnimation="blur-reveal"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -164,36 +151,36 @@ export default function LandingPage() {
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={["Ford", "Toyota", "Honda", "Mercedes", "BMW", "Audi", "Tesla"]}
|
||||
title="Trusted Partner Brands"
|
||||
description="We are proud to work with these industry leaders."
|
||||
names={["Automotive Excellence", "Global Car Care", "Detailing Pioneers", "EcoWash Certified"]}
|
||||
title="Professional Partnerships"
|
||||
description="We collaborate with leaders in vehicle maintenance technology."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={false}
|
||||
title="Contact Our Support"
|
||||
description="Have questions? Reach out to us today for assistance."
|
||||
title="Contact Our Membership Team"
|
||||
description="Have questions about our service levels? Our team is standing by to help."
|
||||
inputs={[
|
||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Email Address", required: true }
|
||||
{ name: "name", type: "text", placeholder: "Full Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Email", required: true }
|
||||
]}
|
||||
textarea={{ name: "message", placeholder: "Tell us how we can help...", rows: 4, required: true }}
|
||||
textarea={{ name: "message", placeholder: "Inquiries, feedback, or support...", rows: 4, required: true }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/luggage-seen-from-rear-car-window_23-2150934327.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ClgvKl6yJnBOzUtWC2bvRWerHa/uploaded-1776965843606-tbuqlcbu.png"
|
||||
logoText="Family Lavage"
|
||||
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ClgvKl6yJnBOzUtWC2bvRWerHa/uploaded-1776966165801-id64q7f2.png"
|
||||
logoText="Family Lavage Group"
|
||||
columns={[
|
||||
{
|
||||
title: "Company", items: [{ label: "About Us", href: "#about" }, { label: "Membership", href: "#membership" }]
|
||||
title: "Services", items: [{ label: "Memberships", href: "#membership" }, { label: "Locations", href: "#about" }]
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }]
|
||||
title: "Company", items: [{ label: "Contact Support", href: "#contact" }, { label: "Privacy", href: "#" }]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
@@ -201,4 +188,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user