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 - Where Cars Become Works of Art

At Your Place Auto Detail, I'm not just cleaning cars; I'm an artist of automotive transformation. This isn't just a job; it's my craft. Let me take you through one of my recent projects, where expertise and detailing excellence merged seamlessly.

Crafting Beauty: The Restoration of a 1971 Datsun Z40

Imagine a sunny day in downtown Knoxville, where I was tasked with something special - restoring a 1971 Datsun Z40 to its former glory. This vintage gem had seen its fair share of adventures, and it was time to give it the love and attention it deserved.

Under the Hood Expertise

I began my work beneath the hood, where subtle oil deposits had accumulated over the years. To me, this was a canvas waiting to be transformed. With my skilled hands and meticulous attention to detail, I delved into engine work, carefully cleaning away the oil deposits. The engine began to shine, a testament to my expertise.

The Radiant Rebirth of Yellow

But the real challenge awaited me on the car's exterior. The once-vibrant yellow paint had lost its luster. I couldn't allow this beauty to fade into obscurity. Armed with my trusted hand wash techniques, I carefully clayed the surface to remove contaminants and then embarked on the painstaking process of hand polishing.

I didn't just polish the paint; I coaxed it back to life. Stroke by stroke, I revealed the true essence of the Datsun. As the sun's rays kissed its surface, the car gleamed with a brilliance that could rival the Knoxville skyline at sunset.

Interior Transformation

The art of detailing extends to the interior as well. This Datsun had stories to tell inside its cabin, stories of dirt and grime embedded in tight nooks and crannies. To do justice to its history, I used the power of steam to gently coax out every bit of embedded dirt, leaving the interior as pristine as the day it rolled off the assembly line.

A Downtown Delight

As I worked, I couldn't help but appreciate the vibrant energy of downtown Knoxville. The city's pulse infused my craftsmanship, and the Datsun transformed into a rolling masterpiece. Yes, my detailing spot was conveniently located within a stone's throw of the iconic Sunsphere - a testament to my commitment to being at the heart of Knoxville.

Within Reach, Always

Accessibility is key to my service. With my mobile detailing setup, I'm just a call away, ready to serve you within a 25-mile radius of downtown Knoxville. Detailing excellence should always be within reach, and I make it happen.

Crafting Automotive Dreams

I don't just clean cars; I bring them to life. Your vehicle's story becomes my canvas, and I'm the artist who reveals its beauty. Whether it's a classic Datsun or a modern marvel, Your Place Auto Detail is synonymous with detailing excellence.

Are you ready to witness the magic of my skillful detailing? Contact me today, and let me transform your car into a masterpiece on wheels. Trust in my craftsmanship, and you'll drive away with a pride that only a Your Place Auto Detail experience can provide. Your car's journey to perfection begins with me - where skill meets detailing excellence.

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