/* global React, ReactDOM, Nav, Footer, Icon, SectionHead, CtaCard */ const { useState } = React; const CATEGORIES = [ { id: "residential", icon: , label: "Residential", title: "Residential electrical, done with care.", blurb: "From a flickering outlet to a whole-home rewire, we treat your house like it's our own. Drop cloths down, shoes off, every wire labeled.", starting: "Most jobs from $180", services: [ "Whole-home rewire", "Panel upgrade & replacement", "Sub-panel installation", "Smart lighting design", "Recessed & canned lighting", "Outlet & switch upgrades", "Ceiling fan installation", "Outdoor & landscape lighting", "Generator hookup", "Surge protection", "GFCI / AFCI upgrades", "Code-compliance inspections", "Aluminum wiring remediation", "Knob-and-tube replacement", ], }, { id: "commercial", icon: , label: "Commercial", title: "Commercial work, on your schedule.", blurb: "Restaurants, retail, offices, and light industrial. We run nights and weekends so your business never closes.", starting: "Custom flat-rate quotes", services: [ "Tenant fit-outs", "200A / 400A service upgrades", "Three-phase wiring", "Restaurant kitchen circuits", "Retail lighting & signage", "Office build-outs", "Data & low-voltage", "Emergency lighting & exit signs", "Code corrections", "Annual safety inspections", "After-hours service", ], }, { id: "ev", icon: , label: "EV charging", title: "EV chargers, installed in an afternoon.", blurb: "Tesla-certified and rated for every major brand. We handle the permit, the load calc, and the rebate paperwork.", starting: "From $640 installed", services: [ "Level 2 home chargers", "Tesla Wall Connector", "ChargePoint / JuiceBox / Wallbox", "Outdoor & garage installs", "Load calculations & service upgrades", "Smart-home integration", "Solar + battery integration", "Permit & rebate filing", "Commercial charging stations", "Multi-unit dwelling chargers", ], }, { id: "hvac", icon: , label: "AC & HVAC", title: "Power for cooler, smarter homes.", blurb: "We don't fix the unit — we make sure the electricity feeding it is right. Done before the heat wave, done before the rebate deadline.", starting: "From $420", services: [ "AC unit circuits", "Mini-split wiring", "Smart thermostat installation", "HVAC service upgrades", "Heat pump wiring", "Whole-home dehumidifier circuits", "Compressor disconnects", "Zone controller wiring", ], }, { id: "hottub", icon: , label: "Hot tubs & spas", title: "Wired for relaxation, wired to code.", blurb: "Dedicated GFCI circuits, weatherproof disconnects, proper grounding. The job most pool installers can't legally do.", starting: "From $780", services: [ "Dedicated GFCI circuits", "240V hot tub circuits", "Outdoor disconnects", "Spa panel installation", "Underground conduit runs", "Bonding & grounding", "Pool equipment wiring", "Sauna circuits", ], }, { id: "emergency", icon: , label: "24/7 emergency", title: "When the power's out, we're not.", blurb: "Real humans answer at 2am. Trucks rolling within the hour for true emergencies, anywhere in Travis County.", starting: "$240 emergency call-out", services: [ "Power loss diagnosis", "Burning smell / hot panels", "Sparking outlets", "Storm damage repair", "Tripped main breakers", "Generator failures", "Smoke alarm wiring", "Water damage assessment", ], }, ]; const ServicesHero = () => (
Every job, every neighborhood

Everything we
wire, in one place.

Six service lines, dozens of specialties, one team of master electricians. Pick a category to see the full list — or just tell us what's broken and we'll figure it out.

Pricing
Flat rates, written down.

Every quote is fixed-price, in writing, before any work starts. No hourly clock running, no surprises on the invoice.

Get a free quote
); const ServicesTabs = () => { const [active, setActive] = useState(CATEGORIES[0].id); const cat = CATEGORIES.find(c => c.id === active); return (
{CATEGORIES.map(c => ( ))}

{cat.title}

{cat.blurb}

What we handle
{cat.services.map(s => (
{s}
))}
Starting price
{cat.starting}
Final quote always written before work begins.
What's included
    {[ "Licensed master electrician on site", "All permits & inspections", "Code-compliant workmanship", "Lifetime workmanship guarantee", "Job photos & documentation", ].map(x => (
  • {x}
  • ))}
{cat.label} — representative job photo
); }; const ProcessBand = () => (
{[ ["01", "Free estimate", "Same-day visit. Walk the job. Written flat-rate quote on the spot."], ["02", "Permit & schedule", "We file every permit. You pick a date. We text you the truck's ETA."], ["03", "Work the job", "Drop cloths, photos at each step, every wire labeled. Cleaned up before we leave."], ["04", "Inspect & guarantee", "City inspection passed. Photo report emailed. Lifetime guarantee, in writing."], ].map(([n, t, d], i) => (
{n}
{t}
{d}
))}
); const FAQ = () => { const [open, setOpen] = useState(0); const faqs = [ ["Are you licensed and insured?", "Yes. Kwality Electric is a Texas-licensed electrical contractor (TECL #28442). We carry $2M general liability and full workers' comp. We'll send proof of insurance before the first visit if you'd like."], ["Do you give free estimates?", "Every estimate is free for jobs in our standard service area (Travis County and immediate neighbors). For larger projects we'll come walk the job, ask questions, and leave you with a written flat-rate quote — no obligation."], ["How does your flat-rate pricing work?", "We quote each job as a single fixed price before any work begins. No hourly clock, no surprise charges. If the job turns out to be more complex than we expected, that's our problem, not yours."], ["What does the lifetime workmanship guarantee cover?", "If any wiring we install fails because of how we installed it — ever — we fix it free. We'll come back to your address as many times as needed. It's in writing, and it transfers to the next owner of the home."], ["Do you pull permits?", "Yes, for any job that requires one. Filing permits and scheduling the city inspection is included in your flat-rate quote. We do not start a permitted job without one on file."], ["Do you offer emergency service?", "24/7. Real humans answer the phone at 2am. We dispatch within the hour for true emergencies (power loss, burning smells, sparking) anywhere in Travis County."], ]; return (
{faqs.map(([q, a], i) => (
setOpen(open === i ? -1 : i)}>
{q} +
{open === i &&
{a}
}
))}
); }; function ServicesPage() { return ( <>