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

- 1 YEAR GUARANTEE! - That's not a typo! We stand by our word . Our Trim Coat is a CERAMIC -- Its'll last 1 year or your money back, no problem! Our product will not wash away under 1 year. This is a CERAMIC coating that is guaranteed to last, FOR 1 YEARS!
- WASHING WILL NOT REMOVE! - Picture this, You're at Walmart, looking on every shelf for the "new" product to restore your faded bumper. Your at your wits end because this will be the forth product you've tried this month. All products looked good until rain spoils the day. We'll make you a deal. If Our Trim Coat washes off within the 1st year, we'll give you your money back! Stop throwing money away on inexpensive products that don't last two weeks.
- REJUVENATE AND PROTECTS YOUR PLASTICS FROM UV RAYS - Inexpensive products don't work, or they work for a little while. Our Trim Coat will actually renew AND preserve your trim. One year guaranteed. no playing around, if it doesn't work, call us for your money back. How does it work? Our ceramic coating plastic CURES to your trim to get a beautiful luster you'll love for at least one year. Its going to look amazing! 
- No Loud Greasy SHINE! - Our Ceramic Trim Coat Kit  will not leave any splatter residue on the side of your vehicle when you drive off. It Cures to your trim


Questions and Answers

* How long does it last?
  Our Trim Ceramic Coating Cures to the surface, so expect at least one year.

* My Jeep has tan interior and tan plastic trim on the body, can  your ceramic trim coating be used?
 Yes, Our Ceramic Trim Coating can be used on all colors

*Is it safe for running boards?
 No, it is not safe for running boards

* Can this product be used on dash boards?
  NO, we do not recommend using our trim restore on your dash

* Will it work on door handles
  Yes as long as the handles are plastic/polymer  

Ceramic Trim Restore

$75.00Price
Quantity
    bottom of page