/* global React, ReactDOM, Nav, Footer, Icon, SectionHead, CtaCard */ const { useState } = React; // ====== Hero ====== const Hero = () => { const [service, setService] = useState("Panel upgrade"); const [zip, setZip] = useState("78704"); const [when, setWhen] = useState("Tomorrow"); return (
Booking next-day in Austin

Electrical work,
handled like
concierge.

Book a licensed master electrician in 60 seconds. Upfront flat-rate pricing, same-day visits across Austin, and a lifetime workmanship guarantee on every job.

{[ ["4.9", "★", "312 Google reviews"], ["TECL #28442", null, "Master licensed"], ["12 yrs", null, "Serving Austin"], ].map(([k, mark, v]) => (
{k}{mark && } {v}
))}
{/* Booking strip */}
{ e.preventDefault(); window.location.href = "schedule.html"; }}>
SERVICE
ZIP
setZip(e.target.value)} maxLength={5}/>
WHEN
Kwality Electric master electrician in uniform with tool belt
RESPONSE ~ 90 min
3 techs available now
{["#D5C5A8","#B8A285","#8C7A5C","#5E4E33"].map((c, i) =>
)}
4.9 · 312
Google reviews
); }; // ====== Trust bar ====== const TrustBar = () => (
Trusted by 1,200+ Austin homeowners & businesses
Google ★★★★★ BBB A+ Angi · Super Service HOUZZ NEXTDOOR · Fav 2024
); // ====== Services chips ====== const ServicesChips = () => { const items = [ { img: "assets/images/panel-icon.png", t: "Panel upgrade", p: "From $1,890", m: "↑ 12% this month", mt: "trend" }, { img: "assets/images/ev-charger-icon.png", t: "EV charger install", p: "From $640", m: "Tesla certified", mt: "info" }, { img: "assets/images/air-conditioner-icon.png", t: "AC wiring", p: "From $420", m: "Same-day", mt: "good" }, { img: "assets/images/hottub-icon.png", t: "Hot tub circuit", p: "From $780", m: "GFCI included", mt: "info" }, ]; return (
See all 24 services } />
{items.map((it, i) => (
{it.t}
{it.p}
{it.m}
))}
); }; // ====== How it works (dark card) ====== const HowItWorks = () => (
How it works

From quote to wired
in 24 hours.

No phone tag, no surprise charges. Three steps from your kitchen table to a finished job.

{[ ["01", "Tell us what you need", "60 seconds online. Zip code, service, when. We confirm in minutes."], ["02", "Free estimate visit", "A master electrician shows up same-day. Walk the job, write a flat-rate quote."], ["03", "Job done right", "Permitted, inspected, photographed. Lifetime workmanship guarantee, in writing."], ].map(([n, t, d], i) => (
{n}
{t}
{d}
))}
); // ====== Featured projects ====== const FeaturedWork = () => { const projects = [ { tag: "Residential rewire", loc: "Hyde Park · 1924 craftsman", note: "Full rewire without disturbing original trim", color: "#D5C5A8", img: "assets/images/rewiring-work.webp" }, { tag: "EV charging", loc: "Westlake · Tesla Powerwall", note: "Dual-charger install + load-balancing", color: "#A8C5D5", img: "assets/images/tesla-charger-work.webp" }, { tag: "Panel upgrade", loc: "Tarrytown · 1950s ranch", note: "100A to 200A service upgrade, zero downtime", color: "#C5D5A8", img: "assets/images/panel-upgrade-work.webp" }, ]; return (
View all projects } />
{projects.map((p, i) => (
{p.img ? (
{p.loc}
) : (
{p.tag} — project photo
)}
{p.tag}
{p.loc}

{p.note}

Read case study
))}
); }; // ====== Why choose ====== const WhyChoose = () => { const items = [ { icon: , t: "Licensed master electricians", d: "TECL #28442. Every tech is a journeyman or master — no apprentices unsupervised." }, { icon: , t: "Same-day response", d: "Most calls answered within an hour. Six trucks rolling across Travis County daily." }, { icon: , t: "Flat-rate pricing", d: "Quote before we start. No hourly surprises, no upsells, no surprises on the invoice." }, { icon: , t: "Lifetime guarantee", d: "Workmanship guaranteed for life. If our wiring fails, we fix it free, forever." }, ]; return (
Why Kwality

The kind of electrician you'd
refer to your mother.

We built Kwality Electric to be the antidote to dodgy quotes and no-shows. Every job runs the same way: a real human answers, a licensed pro arrives on time, the work is done to code and to last.

About our team
{items.map((it, i) => (
{it.icon}
{it.t}
{it.d}
))}
); }; // ====== Testimonials ====== const Testimonials = () => { const quotes = [ { q: "They rewired our 1920s craftsman without disturbing a single piece of original trim. Genuine craftsmen.", n: "Margaret Chen", l: "Hyde Park · Whole-home rewire", c: "#D5C5A8" }, { q: "Three other electricians quoted my EV charger as a two-day job. Kwality did it in four hours, clean as a whistle.", n: "Devon Mitchell", l: "Westlake · EV install", c: "#A8C5D5" }, { q: "I run a restaurant. They worked overnight so we wouldn't lose a single dinner service. That's a real partner.", n: "Sofia Alvarez", l: "East 6th · Commercial rewire", c: "#C5A8D5" }, ]; return (
Read all on Google } />
{quotes.map((q, i) => (
{[0,1,2,3,4].map(s => )}
"{q.q}"
{q.n}
{q.l}
))}
); }; // ====== Service area / map ====== const ServiceArea = () => (
Service area

All of Travis County,
and then some.

We dispatch from East 6th and roll to every Austin neighborhood, plus Round Rock, Cedar Park, Pflugerville, Bee Cave, Lakeway, and Buda.

{["78701","78702","78704","78745","78751","78757","78759","Cedar Park","Round Rock","Bee Cave","Lakeway","Pflugerville"].map(z => ( {z} ))}
{/* Stylized Austin shape */} {/* Coverage zone */} {/* HQ */} HQ · East 6th {/* Active jobs */} {[[140, 140], [260, 130], [150, 270], [280, 250], [180, 320], [320, 200]].map(([x,y], i) => ( ))}
6 trucks dispatched today
); // ====== Mount ====== function HomePage() { return ( <>