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
Soap on Car

Odor Bomber Add-On

Efficient Odor Removal FreshAir Odor Bomb Service for Vehicles - Freshen Up Your Car 💨🚗

  1. Powerful Odor Elimination: 🌬️ Our FreshAir Odor Bomb Service effectively removes tough odors from your vehicle, leaving it smelling fresh and clean. ✨🚘

  2. Professional Service: 👨‍🔧🔝 Our experienced technicians use advanced techniques to ensure efficient odor removal, providing you with a high-quality service. 🛠️💼

  3. Versatile Application: 🚗🚚 This odor bomb is perfect for freshening up cars, trucks, SUVs, and other vehicles, eliminating unpleasant smells caused by smoke, pets, food, and more. 🌫️🐾🍔

  4. Easy to Use: 🔄🔛 Simply activate the FreshAir Odor Bomb and place it in your vehicle. It releases a fog that permeates every corner, reaching deep into fabrics and ventilation systems to neutralize odors. 💨🔝

  5. Long-Lasting Results: ⏰🌹 Our odor bomb not only eliminates odors but also leaves a pleasant, long-lasting fragrance that will make your vehicle a more enjoyable space. 🌈🚙

Description:

Experience the ultimate solution for eliminating odors from your vehicle with our Efficient Odor Removal FreshAir Odor Bomb Service. Whether your car smells of smoke, pet odors, food spills, or any other unpleasant scent, our professional service will freshen it up and leave it smelling like new. ✨🚗

Our FreshAir Odor Bomb Service is designed to provide powerful and long-lasting odor elimination. Our experienced technicians use advanced techniques to ensure that even the toughest odors are effectively removed, leaving your vehicle fresh and clean. 🌬️🔝

With its versatile application, our odor bomb is suitable for all types of vehicles, including cars, trucks, SUVs, and more. No matter the source of the odor, our FreshAir Odor Bomb can handle it. It works by releasing a fog that permeates every corner of your vehicle, reaching deep into fabrics and ventilation systems to neutralize odors at their source. 🚗🌫️👃

Using our FreshAir Odor Bomb is simple and hassle-free. Just activate the bomb and place it in your vehicle. The fog it releases will penetrate every nook and cranny, ensuring that even hidden odors are eliminated. Within a short time, you'll notice a significant improvement in the air quality and fragrance of your vehicle. ⏰💨✨

In addition to its odor-eliminating properties, our FreshAir Odor Bomb leaves a pleasant, long-lasting fragrance behind. Say goodbye to stale and unpleasant smells and hello to a refreshing and inviting atmosphere every time you step into your vehicle. 🌹👃🌈

Don't let odors take away from your driving experience. Choose our Efficient Odor Removal FreshAir Odor Bomb Service and enjoy a clean, fresh-smelling vehicle. Say goodbye to unwanted odors and hello to a more pleasant and enjoyable journey. Order our FreshAir Odor Bomb Service today and experience the difference for yourself! 🚗🌬️✨

Contact

Like what you see? Get in touch to learn more.

  • Facebook
  • Twitter
  • LinkedIn
  • Instagram
Thanks for submitting!
bottom of page