/* global React, ReactDOM, Nav, Footer, Icon, SectionHead, CtaCard */ const AboutHero = () => (
About Kwality Electric

A different kind
of electrician.

Founded in 2014 by a master electrician who got tired of dodgy quotes, missed appointments, and watered-down workmanship. Today we're a 14-person team running six trucks across Austin — but the rules haven't changed.

Book a visit Meet the team
founder portrait — workshop / van background
FOUNDER
Marcus Rivera
Master electrician, 23 yrs
); const Stats = () => (
{[ ["1,247", "projects completed"], ["4.9 ★", "Google rating (312 reviews)"], ["~ 90 min", "average response time"], ["12 years", "serving Austin"], ].map(([k, v], i) => (
{k}
{v}
))}
); const Story = () => (
Our story

Built on the
jobs nobody else
wanted to take.

Marcus started Kwality Electric in 2014 out of a single van and a frustration that runs through every trade: too many contractors who under-promise and under-deliver, too many homeowners stuck with half-finished jobs.

The fix was simple. Quote in writing. Show up on time. Send a real master electrician — not a kid in a polo. Document everything. Stand behind the work forever.

Twelve years later, we run six service trucks, employ fourteen master and journeyman electricians, and answer the phone ourselves at 2am. The fundamentals haven't changed.

); const Values = () => { const values = [ { icon: , t: "On time, or it's free", d: "If we're more than 15 minutes late to a scheduled visit without warning, the estimate's on the house. We've owed it twice this year." }, { icon: , t: "Licensed eyes on every job", d: "Every truck has a journeyman or master electrician on it. No apprentices unsupervised — yes, even on the small jobs." }, { icon: , t: "Guaranteed forever", d: "Our workmanship guarantee transfers with the property. If our wiring fails because of how we installed it, we fix it. Period." }, ]; return (
{values.map((v, i) => (
{v.icon}
{v.t}

{v.d}

))}
); }; const Team = () => { const team = [ { n: "Marcus Rivera", r: "Founder · Master electrician", y: "23 yrs", c: "#D5C5A8" }, { n: "Jen Okafor", r: "Operations lead", y: "8 yrs", c: "#A8C5D5" }, { n: "Diego Velasquez", r: "Master electrician", y: "16 yrs", c: "#C5A8D5" }, { n: "Aisha Walker", r: "Master electrician · EV lead", y: "11 yrs", c: "#A8D5B9" }, { n: "Sam Kowalski", r: "Journeyman · Commercial", y: "9 yrs", c: "#D5B9A8" }, { n: "Priya Shah", r: "Journeyman · Residential", y: "6 yrs", c: "#B9A8D5" }, { n: "Ty Brennan", r: "Journeyman · HVAC", y: "7 yrs", c: "#D5A8B9" }, { n: "Carmen Diaz", r: "Apprentice · Year 3", y: "3 yrs", c: "#A8D5D5" }, ]; return (
{team.map((p, i) => (
portrait
{p.n}
{p.r}
{p.y} in the trade
))}
); }; const ServiceArea = () => (
Service area

Travis County
and the close-ins.

Six trucks dispatched daily from East 6th. We cover every Austin neighborhood plus Round Rock, Cedar Park, Pflugerville, Bee Cave, Lakeway, Buda, and Manor.

{["78701","78702","78703","78704","78705","78745","78751","78757","78759","Cedar Park","Round Rock","Bee Cave","Lakeway","Pflugerville","Manor","Buda"].map(z => ( {z} ))}
Check my address
HQ · East 6th
); const Certifications = () => (
{[ ["TECL", "#28442", "TX Master license"], ["BBB", "A+", "Accredited since 2015"], ["GAF", "Cert.", "Solar partner"], ["IBEW", "Local 520", "Union-trained"], ["NEC", "2023", "Current code"], ["INS", "$2M", "General liability"], ].map(([k, v, l], i) => (
{k}
{v}
{l}
))}
); function AboutPage() { return ( <>