const COATINGS = [ { name: 'Paintwork Coating', price: '£150 – £250', icon: 'car', desc: 'A durable ceramic layer over your paint for a deep, glossy, self-cleaning finish that lasts 2 years.', features: ['2 year protection', 'Hydrophobic, self-cleaning', 'Enhanced gloss & depth', 'UV & chemical resistance'] }, { name: 'Window Coating', price: '£100 – £150', icon: 'droplet', desc: 'Hydrophobic glass coating that sheets water away for dramatically improved wet-weather visibility.', features: ['Rain sheets off the glass', 'Clearer night driving', 'Easier to keep clean', 'Long-lasting clarity'] }, { name: 'Wheel Face Coating', price: '£100 – £170', icon: 'sparkle', desc: 'A 2 year ceramic coating that protects wheel faces from brake dust and grime, so a quick rinse keeps them looking factory-fresh.', features: ['2 year protection', 'Repels brake dust', 'High-temperature resistant', 'Faster, easier cleaning'] }, ]; const BENEFITS = [ ['2 Years, not months', 'Unlike wax, a ceramic coating bonds to your paint and protects for 2 years.'], ['Self-cleaning gloss', 'The hydrophobic surface means dirt and water simply slide off — your car stays cleaner.'], ['Deep, wet-look shine', 'Ceramic adds remarkable depth and clarity, amplifying the finish beneath it.'], ['Real protection', 'Guards against UV fade, bird lime, road salt and light chemical etching.'], ]; const FAQS = [ { q: 'How long does a ceramic coating last?', a: 'Our paintwork and wheel face ceramic coatings each provide 2 years of protection. We will advise on simple aftercare to get the most from it.' }, { q: 'Is ceramic coating worth it?', a: 'If you want lasting protection, an easier-to-clean car and a striking gloss, yes. It is the most durable protection we offer and pays for itself in time saved and finish preserved.' }, { q: 'Why is ceramic an add-on to Gold or Platinum only?', a: 'A coating is only as good as the surface beneath it. The paint must be decontaminated and machine-polished first, which is exactly what our Gold and Platinum details include, so the coating bonds to a flawless finish.' }, { q: 'Can you coat just the wheels or glass?', a: 'Yes. Window and wheel face coatings can be added individually. Paintwork coating requires the paint correction included in a Gold or Platinum detail.' }, ]; function CeramicHero() { return (
Ceramic coating water beading
Paint Protection Specialists

Ceramic
Coating

Lock in 2 years of protection and a deep, self-cleaning gloss. Professionally applied to paintwork, glass and wheels — on your driveway.

); } function App() { React.useEffect(() => { injectSchema({ '@context': 'https://schema.org', '@type': 'FAQPage', mainEntity: FAQS.map(f => ({ '@type': 'Question', name: f.q, acceptedAnswer: { '@type': 'Answer', text: f.a } })) }); }, []); return (
); } ReactDOM.createRoot(document.getElementById('root')).render();