/* How It Works, Why Choose, Services, About, Testimonials, FAQ, Final CTA */ const HowItWorks = () => { const steps = [ { n: '01', title: 'Choose your vehicle & service', body: 'Select your vehicle type and the auto spa service you need. Pricing updates live.', icon: 'sparkle' }, { n: '02', title: 'Get an instant quote', body: 'See your price instantly and pick a date and time that fits your schedule.', icon: 'calendar' }, { n: '03', title: 'We come to you', body: 'Our mobile team arrives at your location and leaves your vehicle looking its best.', icon: 'truck' }, ]; return (
How it works

Three steps. Zero hassle.

From browsing to a sparkling vehicle in your driveway — built to be the fastest, most transparent booking in LA.

    {steps.map((s, i) => (
  1. {s.n}

    {s.title}

    {s.body}

  2. ))}
); }; const WhyChoose = () => { const items = [ { icon: 'truck', title: 'Mobile convenience', body: 'No lines, no waiting, no driving to a car wash. We come to you.' }, { icon: 'sparkle', title: 'Premium results', body: 'Professional care for both the interior and exterior of your vehicle.' }, { icon: 'leaf', title: 'Quality products', body: 'Safe, high-quality products designed to protect your vehicle\u2019s finish.' }, { icon: 'clock', title: 'Easy online booking', body: 'Quote, schedule, and pay online in minutes — done from your phone.' }, { icon: 'shield', title: 'Reliable service', body: 'Our team is trained, punctual, and focused on every detail.' }, { icon: 'card', title: 'Secure payments', body: 'Pay confidently online with Stripe — or cash on service for 10% off.' }, ]; return (
Why Prestige

The luxury car wash experience —
on your schedule.

{items.map((it,i) => (

{it.title}

{it.body}

))}
); }; const Services = ({ onSelectService }) => { const cards = [ { id:'regular', title:'Regular Wash', tag:'Essential', body:'Our most common, basic wash — perfect for keeping your vehicle clean. Wheels, tires, windows, body.' }, { id:'detailing', title:'Detailing', tag:'Premium', body:'Deep interior or exterior cleaning using specialized chemical products for a thorough, professional finish.' }, { id:'luxury', title:'Luxury Wash', tag:'Signature', body:'Premium service designed for high-end vehicles, with the utmost care and attention to every detail.' }, { id:'headlight', title:'Headlight Polishing', tag:'Specialty', body:'We clean and restore the original shine of your headlights, improving both visibility and appearance.' }, ]; return (
Services

Four services. One standard.

From a quick regular wash to our signature luxury treatment — every service is performed by a trained Prestige technician using premium-grade products.

{cards.map((c,i) => (
[ {c.title.toUpperCase()} REFERENCE PHOTO ]
{c.tag}

{c.title}

{c.body}

))}
); }; const About = () => (
[ FOUNDER · MOBILE SETUP ]
[ DETAIL WORK CLOSE-UP ]
About Prestige

15 years of obsessing
over every detail.

Prestige Auto Spa Mobile was created to make premium car care more convenient. We believe your time is valuable, which is why we bring professional auto spa services directly to your home, office, or preferred location.

With attention to detail, top-grade products, and a team that has cared for everything from daily drivers to Lamborghinis, we help your vehicle look clean, polished, and well cared for — without interrupting your day.

15+Years detailing
2.4kVehicles served
4.9★Avg. rating
7dService window
); const Testimonials = () => { const list = [ { quote: 'Excellent service. They arrived on time and left my SUV looking brand new.', name: 'Marisa V.', loc: 'Beverly Hills, CA', stars: 5, vehicle: 'Range Rover Sport' }, { quote: 'Booking was easy, payment was secure, and the results were amazing. The detail work on my interior was unreal.', name: 'Daniel K.', loc: 'Santa Monica, CA', stars: 5, vehicle: 'Tesla Model S' }, { quote: 'I loved that they came to my office. Super convenient and professional. Will be a repeat customer.', name: 'Sofia R.', loc: 'Newport Beach, CA', stars: 5, vehicle: 'Mercedes GLE' }, { quote: 'They handle my Porsche the way I would. Careful products, attention to every panel.', name: 'James L.', loc: 'Malibu, CA', stars: 5, vehicle: 'Porsche 911' }, ]; const [idx, setIdx] = React.useState(0); const [paused, setPaused] = React.useState(false); React.useEffect(() => { if (paused) return; const t = setInterval(() => setIdx(i => (i + 1) % list.length), 6000); return () => clearInterval(t); }, [paused, list.length]); const go = (n) => setIdx(((n % list.length) + list.length) % list.length); return (
Testimonials

What clients across LA
are saying.

setPaused(true)} onMouseLeave={() => setPaused(false)} >
{list.map((t, i) => (
idx ? 'is-next' : ''}`} aria-hidden={i !== idx} >
{Array(t.stars).fill(0).map((_, k) => )}
{t.quote}
{t.name}
{t.loc} · {t.vehicle}
))}
{list.map((_, i) => (
); }; const FAQ = () => { const items = [ { q: 'Do I need to provide water or electricity?', a: 'Most services include our self-contained water and power supply. If something is required for your specific service, we\u2019ll let you know during booking.' }, { q: 'How long does the service take?', a: 'Service time depends on your vehicle type and selected package — typically 45 minutes for a Regular Wash, up to 3.5 hours for Detailing or our Luxury Wash.' }, { q: 'Can I pay by card?', a: 'Yes. You can securely pay online by card through Stripe. We also accept cash on the day for a 10% discount.' }, { q: 'What areas do you serve?', a: 'We cover the West Coast from Malibu to Newport Beach — including West Hollywood, Beverly Hills, Santa Monica, Manhattan Beach and surrounding areas. Enter your ZIP at booking to confirm.' }, { q: 'What happens if it rains?', a: 'If weather affects your appointment, we\u2019ll proactively reach out to reschedule based on availability — at no charge.' }, { q: 'Can I book for multiple vehicles?', a: 'Absolutely. After your first booking, you can add additional vehicles at checkout. Fleet and building accounts are available — ask about our promo codes.' }, ]; const [open, setOpen] = React.useState(0); return (
FAQ

Questions
before you book?

Can\u2019t find what you\u2019re looking for? Text our team — we reply within the hour during business days.

Talk to a human
{items.map((it,i) => (
{open === i &&
{it.a}
}
))}
); }; const FinalCTA = ({ onBook }) => (
Ready when you are

Ready for a cleaner,
sharper-looking vehicle?

Get your instant quote, book online, and let Prestige Auto Spa Mobile come to you.

(424) 415-0208
); window.HowItWorks = HowItWorks; window.WhyChoose = WhyChoose; window.Services = Services; window.About = About; window.Testimonials = Testimonials; window.FAQ = FAQ; window.FinalCTA = FinalCTA;