'use client'; import Image from 'next/image'; import TrustStrip from '@/components/TrustStrip'; import ServiceCards from '@/components/ServiceCards'; import FAQ, { QA } from '@/components/FAQ'; import ContactForm from '@/components/ContactForm'; import { track } from '@/lib/analytics'; import { useVariant } from '@/lib/ab'; const faq: QA[] = [ { q: 'Do you offer 24/7 emergency service?', a: 'Yes—dispatch evenings/weekends; average response under 60 minutes.' }, { q: 'What areas do you serve?', a: 'Corpus Christi, Flour Bluff, Portland, Aransas Pass, Rockport.' }, { q: 'Are you licensed and insured?', a: 'Yes—Texas electrical contractor TECL ####; liability & workers\' comp.' }, { q: 'Do you handle permits and inspections?', a: 'Yes. We pull permits and pass final inspection.' }, { q: 'What warranty do you provide?', a: '1-year labor; manufacturer warranty on parts.' }, ]; export default function Home() { const { variant: abVariant, mounted } = useVariant(); return ( <> {/* HERO */}
{/* Left Column */}
{/* Eyebrow pill */}
24/7 Emergency Available Now
{/* H1 */}

24/7 Emergency Electricians in{' '} Corpus Christi

{/* Subcopy */}

Licensed & insured. Code-compliant fixes with{' '} under-60-minute average response.

{/* Primary CTAs */}
mounted && track('cta_click', { cta: 'call_now_hero', variant: abVariant })} className="btn-primary btn-lg text-center" > 📞 Call Now — 24/7 mounted && track('cta_click', { cta: 'quote_hero', variant: abVariant })} className="btn-outline btn-lg text-center" > Get My Free Quote
{/* Trust row */}
⭐⭐⭐⭐⭐ 4.9 Rating (200+ locals) A+ BBB 19+ Years
{/* Right Column */}
Professional electrical services in Corpus Christi - licensed electricians at work
{/* TRUST STRIP */} {/* SERVICES */} {/* COVERAGE / LOCAL MAP */}
{/* Map Placeholder */}
🗺️

Service Coverage Area

Interactive map coming soon

{/* Coverage Info */}

Serving Corpus Christi & Nearby

We provide comprehensive electrical services throughout the greater Corpus Christi area with rapid response times.

  • Flour Bluff
  • Portland
  • Aransas Pass
  • Rockport
  • Calallen
  • Robstown
{/* LEAD BLOCK */}

Ready to solve your electrical problem?

📍

2801 S Port Ave

Corpus Christi, TX 78405

📞

(361) 885-0315

24/7 Emergency

✉️

info@cielectrical.com

Mon-Fri 7AM-5PM

Call Now Get Free Quote
{/* FAQ */} {/* CONTACT FORM */}
); }