From b5be0cd87bb88ef52e55f6d9df0bccad34b2b2be Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 11 Apr 2026 10:26:45 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 155 ++++++++++------------------------------------- 1 file changed, 33 insertions(+), 122 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 9917d52..d52dda1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -28,22 +28,10 @@ export default function LandingPage() { @@ -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" }, ]} /> @@ -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"]} />
@@ -187,33 +115,16 @@ export default function LandingPage() { Date: Sat, 11 Apr 2026 10:26:45 +0000 Subject: [PATCH 2/2] Update src/app/services/page.tsx --- src/app/services/page.tsx | 121 ++++++++------------------------------ 1 file changed, 24 insertions(+), 97 deletions(-) diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index e55449a..5eeb7ba 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -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 ( @@ -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." }, ]} /> @@ -130,33 +74,16 @@ export default function LandingPage() {