import React from “react”; import { Card, CardContent } from “@/components/ui/card”; import { Button } from “@/components/ui/button”; import { FaBolt, FaPhone, FaEnvelope, FaMapMarkerAlt } from “react-icons/fa”; import { motion } from “framer-motion”; const HomePage = () => { return (
{/* Header */}

Bright Sparks Electrical

{/* Hero Section */}
Powering Your Projects with Expertise

Trusted Electrical Solutions for Residential, Commercial, and Industrial Needs.

{/* Services Section */}

Our Services

{[ { title: “Residential Wiring”, description: “Safe and efficient home wiring solutions.” }, { title: “Commercial Installations”, description: “Expert installations for businesses of all sizes.” }, { title: “Maintenance & Repairs”, description: “Quick and reliable repair services.” }, { title: “Electrical Inspections”, description: “Detailed safety and compliance checks.” }, { title: “Lighting Design”, description: “Custom lighting solutions for homes and businesses.” }, { title: “Smart Home Upgrades”, description: “Enhance your home with the latest smart technologies.” }, ].map((service, index) => (

{service.title}

{service.description}

))}
{/* Portfolio Section */}

Our Projects

Here are some of our recent works that showcase our expertise.

{Array.from({ length: 6 }).map((_, index) => (
))}
{/* Testimonials Section */}

What Our Clients Say

{[ { name: “John Doe”, feedback: “Bright Sparks transformed our office with their lighting solutions!” }, { name: “Jane Smith”, feedback: “Professional and reliable service for our home renovation.” }, ].map((testimonial, index) => (

“{testimonial.feedback}”

– {testimonial.name}

))}
{/* About Section */}

About Us

Bright Sparks Electrical is a trusted name in electrical contracting. With over 20 years of experience, we ensure quality workmanship and customer satisfaction.

{/* Contact Section */}

Contact Us

We’d love to hear from you! Reach out to us today.

(123) 456-7890
info@brightsparks.com
123 Main Street, Your City
{/* Footer */}
); }; export default HomePage;