Merge version_1 into main #1

Merged
bender merged 2 commits from version_1 into main 2026-04-11 10:26:49 +00:00
2 changed files with 57 additions and 219 deletions

View File

@@ -28,22 +28,10 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="BM Electrical"
/>
@@ -51,47 +39,21 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroBillboardCarousel
background={{
variant: "gradient-bars",
}}
background={{ variant: "gradient-bars" }}
title="BM Electrical Service - 24/7 Professional Support"
description="Your trusted local experts in Chennai for all electrical needs. No hidden charges, transparent pricing, and punctual service you can count on."
tag="Available 24/7"
buttons={[
{
text: "Call Now",
href: "tel:+919876543210",
},
{
text: "Book Service",
href: "/contact",
},
{ text: "Call Now", href: "tel:+919876543210" },
{ text: "Book Service", href: "/contact" },
]}
mediaItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/electrician-hard-hat-looks-wall-while-holding-electric-cable_169016-12103.jpg",
imageAlt: "Professional Electrician",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/male-electrician-overalls-focused-work-switchboard-with-fuses-using-tablet_169016-66545.jpg",
imageAlt: "Home Electrical Services",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/truck-logistics-operations-dusk_23-2151468848.jpg",
imageAlt: "Emergency Repair",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/technician-fixing-motherboard_1161-91.jpg",
imageAlt: "Precision Diagnostics",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/courier-doing-jobs-logistics_23-2149229209.jpg",
imageAlt: "Reliable Service Van",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/male-electrician-works-switchboard-overalls-against-backdrop-emergency-lighting_169016-66406.jpg",
imageAlt: "Expert Wiring",
},
{ imageSrc: "http://img.b2bpic.net/free-photo/electrician-hard-hat-looks-wall-while-holding-electric-cable_169016-12103.jpg", imageAlt: "Professional Electrician" },
{ imageSrc: "http://img.b2bpic.net/free-photo/male-electrician-overalls-focused-work-switchboard-with-fuses-using-tablet_169016-66545.jpg", imageAlt: "Home Electrical Services" },
{ imageSrc: "http://img.b2bpic.net/free-photo/truck-logistics-operations-dusk_23-2151468848.jpg", imageAlt: "Emergency Repair" },
{ imageSrc: "http://img.b2bpic.net/free-photo/technician-fixing-motherboard_1161-91.jpg", imageAlt: "Precision Diagnostics" },
{ imageSrc: "http://img.b2bpic.net/free-photo/courier-doing-jobs-logistics_23-2149229209.jpg", imageAlt: "Reliable Service Van" },
{ imageSrc: "http://img.b2bpic.net/free-photo/male-electrician-works-switchboard-overalls-against-backdrop-emergency-lighting_169016-66406.jpg", imageAlt: "Expert Wiring" },
]}
/>
</div>
@@ -104,31 +66,11 @@ export default function LandingPage() {
description="Everything you need to know about our services."
faqsAnimation="slide-up"
faqs={[
{
id: "q1",
title: "Do you offer emergency services?",
content: "Yes, we are available 24/7 for any electrical emergencies.",
},
{
id: "q2",
title: "Is your pricing transparent?",
content: "Absolutely. We provide clear, upfront quotes with no hidden costs.",
},
{
id: "q3",
title: "What areas do you serve?",
content: "We primarily serve Anakaputhur and the wider Chennai metropolitan area.",
},
{
id: "q4",
title: "Are your electricians certified?",
content: "Yes, all our team members are fully trained, certified, and insured.",
},
{
id: "q5",
title: "How can I book a service?",
content: "You can call us directly or use the booking link on our contact page.",
},
{ id: "q1", title: "Do you offer emergency services?", content: "Yes, we are available 24/7 for any electrical emergencies." },
{ id: "q2", title: "Is your pricing transparent?", content: "Absolutely. We provide clear, upfront quotes with no hidden costs." },
{ id: "q3", title: "What areas do you serve?", content: "We primarily serve Anakaputhur and the wider Chennai metropolitan area." },
{ id: "q4", title: "Are your electricians certified?", content: "Yes, all our team members are fully trained, certified, and insured." },
{ id: "q5", title: "How can I book a service?", content: "You can call us directly or use the booking link on our contact page." },
]}
/>
</div>
@@ -142,21 +84,9 @@ export default function LandingPage() {
title="Why Choose Us"
description="Experience excellence in electrical maintenance."
metrics={[
{
id: "m1",
value: "10+",
description: "Years of Experience",
},
{
id: "m2",
value: "5k+",
description: "Successful Projects",
},
{
id: "m3",
value: "24/7",
description: "Emergency Support",
},
{ id: "m1", value: "10+", description: "Years of Experience" },
{ id: "m2", value: "5k+", description: "Successful Projects" },
{ id: "m3", value: "24/7", description: "Emergency Support" },
]}
/>
</div>
@@ -167,18 +97,16 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Trusted By Families and Businesses"
description="Join thousands of satisfied clients in Chennai."
names={[
"Residential Homes",
"Local Shops",
"Office Complexes",
"Industrial Units",
"Apartment Buildings",
]}
names={["Residential Homes", "Local Shops", "Office Complexes", "Industrial Units", "Apartment Buildings"]}
/>
</div>
<div id="testimonial" data-section="testimonial">
<TestimonialCardTwelve
cardTitle="Client Testimonials"
cardTag="Feedback"
cardAnimation="slide-up"
testimonials={[]}
useInvertedBackground={false}
/>
</div>
@@ -187,33 +115,16 @@ export default function LandingPage() {
<FooterSimple
columns={[
{
title: "Company",
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Our Services",
href: "/services",
},
{
label: "Contact",
href: "/contact",
},
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Our Services", href: "/services" },
{ label: "Contact", href: "/contact" },
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
],
},
]}

View File

@@ -6,9 +6,9 @@ import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import { Home, Lightbulb, ShieldCheck, Tool, Zap } from "lucide-react";
import { Home, Lightbulb, ShieldCheck, Wrench, Zap } from "lucide-react";
export default function LandingPage() {
export default function ServicesPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
@@ -26,22 +26,10 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="BM Electrical"
/>
@@ -53,36 +41,12 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={false}
features={[
{
icon: Zap,
title: "Emergency Repairs",
description: "Rapid response for power failures and electrical emergencies 24/7.",
},
{
icon: ShieldCheck,
title: "Safety Inspections",
description: "Complete electrical safety audits for your peace of mind.",
},
{
icon: Lightbulb,
title: "Lighting Installation",
description: "Expert lighting solutions for indoor and outdoor spaces.",
},
{
icon: Zap,
title: "Wiring Upgrades",
description: "Safe, modern wiring and panel upgrades for reliability.",
},
{
icon: Tool,
title: "Appliance Fitting",
description: "Professional installation and troubleshooting for your appliances.",
},
{
icon: Home,
title: "Home Maintenance",
description: "Regular maintenance contracts to keep your home running smoothly.",
},
{ icon: Zap, title: "Emergency Repairs", description: "Rapid response for power failures and electrical emergencies 24/7." },
{ icon: ShieldCheck, title: "Safety Inspections", description: "Complete electrical safety audits for your peace of mind." },
{ icon: Lightbulb, title: "Lighting Installation", description: "Expert lighting solutions for indoor and outdoor spaces." },
{ icon: Zap, title: "Wiring Upgrades", description: "Safe, modern wiring and panel upgrades for reliability." },
{ icon: Wrench, title: "Appliance Fitting", description: "Professional installation and troubleshooting for your appliances." },
{ icon: Home, title: "Home Maintenance", description: "Regular maintenance contracts to keep your home running smoothly." },
]}
title="Our Electrical Services"
description="Comprehensive electrical solutions for your home and office."
@@ -97,31 +61,11 @@ export default function LandingPage() {
description="Common questions about our electrical solutions."
faqsAnimation="slide-up"
faqs={[
{
id: "q1",
title: "Installation time?",
content: "Typically 1-2 hours depending on the complexity of the installation.",
},
{
id: "q2",
title: "Warranty provided?",
content: "Yes, we provide a 6-month warranty on all our repair works.",
},
{
id: "q3",
title: "Payment methods?",
content: "We accept cash, bank transfers, and digital wallet payments.",
},
{
id: "q4",
title: "Weekend availability?",
content: "We operate 24/7, including weekends and public holidays.",
},
{
id: "q5",
title: "Can you provide parts?",
content: "Yes, we source high-quality genuine electrical parts for your replacements.",
},
{ id: "q1", title: "Installation time?", content: "Typically 1-2 hours depending on the complexity of the installation." },
{ id: "q2", title: "Warranty provided?", content: "Yes, we provide a 6-month warranty on all our repair works." },
{ id: "q3", title: "Payment methods?", content: "We accept cash, bank transfers, and digital wallet payments." },
{ id: "q4", title: "Weekend availability?", content: "We operate 24/7, including weekends and public holidays." },
{ id: "q5", title: "Can you provide parts?", content: "Yes, we source high-quality genuine electrical parts for your replacements." },
]}
/>
</div>
@@ -130,33 +74,16 @@ export default function LandingPage() {
<FooterSimple
columns={[
{
title: "Company",
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Our Services",
href: "/services",
},
{
label: "Contact",
href: "/contact",
},
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Our Services", href: "/services" },
{ label: "Contact", href: "/contact" },
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
],
},
]}