/* PVRescue marketing site — testimonials, service areas, FAQ, final CTA. */ (function(){ const { Button, Card, Icon, Badge } = window.PVRescueDesignSystem_b3a34e; const { SiteSection, SiteEyebrow, SiteH2, QuoteForm, PVR_CONTACT, WAIcon, SiteStars, siteJump } = window; /* ---- Testimonials ------------------------------------------------------ */ const REVIEWS = [ { q: 'PVRescue het ons Sunsynk-stelsel geïnstalleer — netjiese werk, billike prys en ’n volledige CoC. Ons rekening het sommer geval.', n: 'Pieter van der Merwe', a: 'Stellenbosch', i: 'PM' }, { q: 'Installed our 8kW Sunsynk and we barely notice load-shedding now. Neat work and a full CoC — highly recommend.', n: 'Refilwe Mokoena', a: 'Durbanville', i: 'RM' }, { q: 'Hulle het ons driefasekrag reggemaak en sonpanele op die plaas se store gesit. Betroubaar, en hulle bel jou terug.', n: 'Annelize Botha', a: 'Paarl', i: 'AB' }, { q: 'Added a Pi²R to our geyser and the bill dropped noticeably. Quick, clean install and friendly team.', n: 'Sarah Petersen', a: 'Table View', i: 'SP' }, { q: 'Rewired our DB board and added battery backup. Professional, on time, and they explained everything clearly.', n: 'Mogamat Adams', a: 'Bellville', i: 'MA' }, ]; function Testimonials() { return (
Reviews What our customers say
{REVIEWS.map((r) => (

"{r.q}"

{r.i}
{r.n}
{r.a}
))}
); } /* ---- Service areas ----------------------------------------------------- */ const AREAS = ['Cape Town', 'Bellville', 'Durbanville', 'Somerset West', 'Stellenbosch', 'Paarl', 'Table View', 'Helderberg']; function ServiceAreas() { return (
Service areas All over the Western Cape & the farms around it

From the City Bowl to the Winelands and out to the West Coast farms — if you're nearby, we'll come to you. Not sure? Give us a call.

WhatsApp
{AREAS.map((a) => ( {a} ))} + surrounding farms
); } /* ---- FAQ --------------------------------------------------------------- */ const FAQS = [ ['How much does a solar system cost?', 'It depends on your home, your usage and how much backup you want — that\u2019s why we do a site visit and give you a clear, fixed quote with no surprises. Most homes start with a hybrid inverter, battery and panel package sized to their bill. With electricity prices climbing every year, most systems pay for themselves in around 3–5 years and keep saving for decades.'], ['Do you issue a Certificate of Compliance?', 'Always. Every installation and electrical job is signed off to SANS 10142-1 with a CoC — what your insurer and the law require.'], ['Can you fix or maintain my existing system?', 'Yes. We service and repair existing solar and electrical installations — cleaning, isolators, wiring, DB boards and getting a stopped system running again.'], ['Which areas do you cover?', 'Right across the Western Cape — Cape Town, the Northern Suburbs, Helderberg, the Winelands and out to the West Coast — plus farms and smallholdings. Not sure if we reach you? Just call.'], ]; function FAQ() { const [open, setOpen] = React.useState(0); return (
FAQ Questions, answered
{FAQS.map(([q, a], i) => { const on = open === i; return (
{on &&
{a}
}
); })}
); } /* ---- Final CTA --------------------------------------------------------- */ function FinalCTA() { return (
Ready when you are Get your free quote today

Tell us what you need and we'll call you back within the hour with honest advice and a fixed price.

{[['phone', 'Call us', PVR_CONTACT.phoneLabel, PVR_CONTACT.phoneHref], ['mail', 'Email', PVR_CONTACT.email, PVR_CONTACT.emailHref]].map(([ic, k, v, href]) => ( {k}{v} ))}
Request a callback
Free, no obligation.
); } Object.assign(window, { SiteTestimonials: Testimonials, SiteServiceAreas: ServiceAreas, SiteFAQ: FAQ, SiteFinalCTA: FinalCTA }); })();