/* 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 with Stripe, PayPal, Zelle, Venmo, Cash App — or cash.' }, ]; 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:'ext', title:'Exterior Wash', tag:'Essential', body:'A professional exterior clean to remove dirt, dust, and road buildup. Wheels, tires, windows, body.' }, { id:'both', title:'Interior & Exterior', tag:'Most Popular', body:'A complete refresh for your vehicle inside and out. Hand wash plus interior vacuum and wipe-down.' }, { id:'detail', title:'Full Detail', tag:'Premium', body:'A deeper cleaning service designed to restore a polished, premium look — top to bottom.' }, { id:'intd', title:'Interior Deep Cleaning', tag:'Specialty', body:'Focused care for seats, carpets, dashboard, panels, and interior surfaces. Leather conditioning included.' }, { id:'wax', title:'Wax & Paint Protection', tag:'Protection', body:'Add shine and protection to your vehicle\u2019s exterior finish. Long-lasting hand-applied sealant.' }, { id:'spa', title:'Premium Auto Spa', tag:'Signature', body:'Our most complete service for customers who want the full Prestige experience. Concierge-level care.' }, ]; return (
Services

Six tiers. One standard.

From a quick exterior refresh to our signature top-to-bottom spa 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 an exterior wash, up to 3.5 hours for the Premium Auto Spa.' }, { q: 'Can I pay by card?', a: 'Yes. You can securely pay online by Stripe, PayPal, Zelle, Venmo, or Cash App. 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.

(310) 555-0110
); window.HowItWorks = HowItWorks; window.WhyChoose = WhyChoose; window.Services = Services; window.About = About; window.Testimonials = Testimonials; window.FAQ = FAQ; window.FinalCTA = FinalCTA;