// Installer feedback / built-by-car-people testimonial-style band. const Installers = () => { const { motion } = window.Motion; const fadeUp = (delay = 0) => ({ initial: { filter: "blur(10px)", opacity: 0, y: 20 }, whileInView: { filter: "blur(0px)", opacity: 1, y: 0 }, viewport: { once: true, amount: 0.2 }, transition: { duration: 0.8, ease: "easeOut", delay }, }); const quotes = [ { q: "It lays in like a vinyl but lives like a PPF. I stopped quoting two products to my customers — I just quote OVERCUT.", who: "M. Roth", shop: "Zürich Auto Studio", }, { q: "We sent feedback on edge-tack and the next batch had it dialled. They actually listen, which is rare in this industry.", who: "J. Alvarez", shop: "Coastline Wraps, CA", }, { q: "Three years in on a daily-driven Cayman and the gloss is still wet. Self-heal genuinely works on the door pulls.", who: "L. Tanaka", shop: "Private Owner, Tokyo", }, ]; return (
// Built with installers Made by car people.
Refined by installers.
OVERCUT was started by a small team of obsessives who couldn’t find a colour PPF that hit performance, price and palette at the same time. Every roll since v1 has been adjusted with feedback from working shops — tack, stretch, release liner, edge seal — until the product fit the bay, not just the spec sheet.
{quotes.map((it, i) => (
{it.q}
{it.who}
{it.shop}
))}
); }; window.Installers = Installers;