import React, { useState } from 'react'; import { PackageTier, VehicleType } from '../types'; const DetailRealityCheck: React.FC = () => { const [vehicleType, setVehicleType] = useState(VehicleType.CAR_4DR); const [dirtiness, setDirtiness] = useState(5); const [hasHair, setHasHair] = useState(false); const [hasStains, setHasStains] = useState(false); const [hasOdors, setHasOdors] = useState(false); const [year, setYear] = useState(new Date().getFullYear()); const [result, setResult] = useState<{ tier: PackageTier; price: string; reason: string } | null>(null); const calculate = () => { const isNew = (new Date().getFullYear() - year) <= 5; const isCar = vehicleType === VehicleType.CAR_2DR || vehicleType === VehicleType.CAR_4DR; let tier = PackageTier.MODERATE; let price = ""; let reason = ""; // VIP LIGHT CHECK ($250) if (isNew && isCar && !hasHair && !hasStains && !hasOdors && dirtiness <= 4) { tier = PackageTier.VIP_LIGHT; price = "$250"; reason = "Good news, this one behaves nicely, so you qualify for our VIP Light Detail at $250."; } // MINIVAN SPECIAL ($650+) else if (vehicleType === VehicleType.MINIVAN) { tier = PackageTier.MODERATE; price = dirtiness > 7 ? "$750+" : "$650+"; reason = "Minivans are large projects. " + (dirtiness > 7 ? "That level of cleaning" : "Standard care") + " starts around " + price + " to get it right."; } // EXTREME ($550+) else if (dirtiness >= 9 || (hasHair && hasStains && hasOdors)) { tier = PackageTier.EXTREME; price = vehicleType === VehicleType.SUV ? "$600+" : vehicleType === VehicleType.TRUCK ? "$650+" : "$550+"; reason = "That bumps it into our next tier so we can handle the heavy lifting. This requires a total restoration focus."; } // HEAVY (Fails 2+ VIP conditions) else if ([hasHair, hasStains, hasOdors, dirtiness > 5].filter(Boolean).length >= 2) { tier = PackageTier.HEAVY; price = vehicleType === VehicleType.SUV ? "$475-$525" : vehicleType === VehicleType.TRUCK ? "$500-$550" : "$425-$475"; reason = "Failing multiple VIP conditions moves this into our Heavy tier. We’ll need the extra time for pet hair or stains."; } // MODERATE (Fails 1 VIP condition) else { tier = PackageTier.MODERATE; price = vehicleType === VehicleType.SUV ? "$400-$425" : vehicleType === VehicleType.TRUCK ? "$425-$450" : "$350-$375"; reason = "That bumps it into our Moderate tier—our most common service for Knoxville daily drivers."; } setResult({ tier, price, reason }); }; return (

Screening Tool

🧠 The Reality Check

30 seconds. Zero judgment. Tell us what we're working with.

setYear(parseInt(e.target.value))} />
setDirtiness(parseInt(e.target.value))} />
1: Just Tidy Level: {dirtiness} 10: "No comment"
{[ { label: 'Hair', state: hasHair, set: setHasHair, icon: '🐶' }, { label: 'Stains', state: hasStains, set: setHasStains, icon: '🧃' }, { label: 'Odors', state: hasOdors, set: setHasOdors, icon: '👃' }, ].map(item => ( ))}
{result ? (

Professional Suggestion

{result.tier}

{result.price}

"{result.reason}"

) : (

Complete the quick screening
to reveal your tier

)}
); }; export default DetailRealityCheck;
top of page

Welcome to Your Place Auto Detail: Knoxville's Premier Mobile Hand Wash Service! 🚗✨

At Your Place Auto Detail, we bring the car wash experience to your doorstep in Knoxville, Tennessee. We believe that your vehicle deserves nothing but the best, and that's why we offer meticulous hand washing services that go above and beyond the run-of-the-mill bay washes and automatic car washes. 🌟

1. Gentle Care for Your Precious Ride 🧼

Our hand wash service treats your vehicle with the utmost care and attention it deserves. Unlike automatic car washes that rely on harsh brushes and chemicals, our skilled team uses premium, environmentally-friendly products and a gentle touch to preserve your car's finish. Say goodbye to the risk of scratches and swirl marks! 🚫✨

2. Customized Detailing for Every Nook and Cranny 🧽

We believe in the power of detail, and that's exactly what you'll get with our hand wash service. Our technicians pay close attention to every nook and cranny of your vehicle, ensuring that even the most hard-to-reach spots are cleaned to perfection. Your car will look showroom-ready in no time! 🏎️💦

Revitalize Your Ride with Our Comprehensive Auto Detailing Services! 🌪️

3. Protection for Your Investment 🛡️

Regular hand washing not only keeps your car looking great but also protects its long-term value. By removing dirt, grime, and contaminants that accumulate on your vehicle's surface, you'll prevent corrosion and maintain your car's resale value. It's an investment in your investment! 💰🚀

4. Eco-Friendly Approach 🌿

We care about the environment as much as we care about your car. Our hand wash services are eco-friendly, using minimal water and biodegradable cleaning products to minimize our impact on Mother Earth. You can have a sparkling clean car with a clean conscience! ♻️🌎

5. Personalized Service at Your Convenience ⏰

A hand-washed car simply looks better. The attention to detail we provide ensures that your vehicle shines with a level of cleanliness and brilliance that automatic car washes can't match. You'll take pride in driving a car that turns heads wherever you go! 😎🚘

6. Enhanced Appearance and Pride of Ownership 🌟

A hand-washed car simply looks better. The attention to detail we provide ensures that your vehicle shines with a level of cleanliness and brilliance that automatic car washes can't match. You'll take pride in driving a car that turns heads wherever you go! 😎🚘

Experience the Your Place Auto Detail Difference! 🌟

Don't settle for less when it comes to caring for your vehicle. Choose Your Place Auto Detail for a hand wash that's second to none. We're Knoxville's trusted mobile hand wash experts, and we're here to make your car shine brighter than ever before. Contact us today to schedule your next appointment and experience the difference for yourself! 📞🚿

Your Place Auto Detail takes the hassle out of car washing. We come to you, whether you're at home, work, or anywhere in Knoxville. No more waiting in line at crowded car wash bays or navigating through automated machines. We fit into your schedule, not the other way around! 🚗🏡

Your Place Auto Detail - Where Clean Meets Convenience! 👌🏁

Book Now
Book Now

Get a Quote

This is a Paragraph. Click on "Edit Text" or double click on the text box to start editing the content.

Thanks for submitting!
bottom of page