Merge version_1 into main #1
@@ -78,7 +78,7 @@ export default function AboutPage() {
|
||||
tag="Trust Signals"
|
||||
title="Why Homeowners Choose AR Electrical"
|
||||
description="With a proven track record of excellent service and customer satisfaction, AR Electrical Engineering has become the trusted choice for electrical needs in Kasaragod and surrounding areas."
|
||||
imageSrc="http://img.b2bpic.net/free-vector/quality-badges_23-2147516098.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/quality-badges_23-2147516098.jpg?_wi=3"
|
||||
imageAlt="five star rating trust badge quality seal"
|
||||
mediaPosition="right"
|
||||
accordionItems={[
|
||||
@@ -121,7 +121,7 @@ export default function AboutPage() {
|
||||
quote: "Really great work and on time. Amazing job and strong commitment to customer satisfaction. Highly recommend AR Electrical for any electrical needs.",
|
||||
name: "Rajesh Kumar",
|
||||
role: "Homeowner, Bheemanady",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1620.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1620.jpg?_wi=2",
|
||||
imageAlt: "happy homeowner satisfied customer portrait",
|
||||
},
|
||||
{
|
||||
@@ -130,7 +130,7 @@ export default function AboutPage() {
|
||||
quote: "Excellent service at any time. They responded quickly to my emergency call and fixed the problem professionally. Very affordable pricing too!",
|
||||
name: "Priya Menon",
|
||||
role: "Business Owner, Kasaragod",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-design-twitter-post-template_23-2149754244.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-design-twitter-post-template_23-2149754244.jpg?_wi=2",
|
||||
imageAlt: "happy business owner satisfied customer portrait",
|
||||
},
|
||||
{
|
||||
@@ -139,7 +139,7 @@ export default function AboutPage() {
|
||||
quote: "AR Electrical is the team to call. They completed the entire house wiring project on schedule and within budget. Very professional and reliable.",
|
||||
name: "Vikram Singh",
|
||||
role: "Contractor, Kasaragod District",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/builder-man-wearing-construction-uniform-standing-with-arms-crossed-with-confident-smile-isolated-orange-wall_141793-14478.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/builder-man-wearing-construction-uniform-standing-with-arms-crossed-with-confident-smile-isolated-orange-wall_141793-14478.jpg?_wi=2",
|
||||
imageAlt: "contractor satisfied customer testimonial portrait",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -42,7 +42,7 @@ export default function ContactPage() {
|
||||
description="Contact AR Electrical Engineering for immediate assistance. We're here to help with all your electrical needs in Kasaragod."
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/focused-call-center-operator-typing-laptop_74855-4213.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/focused-call-center-operator-typing-laptop_74855-4213.jpg?_wi=4"
|
||||
mediaPosition="right"
|
||||
mediaAnimation="slide-up"
|
||||
inputPlaceholder="Enter your email"
|
||||
|
||||
@@ -1,18 +1,22 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Poppins } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Poppins } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const poppins = Poppins({
|
||||
variable: "--font-poppins",
|
||||
@@ -20,6 +24,34 @@ const poppins = Poppins({
|
||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "AR Electrical Engineering | Electrical Services Kasaragod",
|
||||
description: "Professional electrical installation and repair services in Kasaragod, Bheemanady. 5-star rated local electrician for homes and businesses. Call 082815 97838.",
|
||||
keywords: "electrician Kasaragod, electrical services Bheemanady, house wiring, electrical installation, electrical repairs Kerala",
|
||||
openGraph: {
|
||||
title: "AR Electrical Engineering - Trusted Electrician in Kasaragod",
|
||||
description: "Professional electrical installation and repair services. 5-star rated. Serving Kasaragod and surrounding areas.",
|
||||
siteName: "AR Electrical Engineering",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/male-electrician-works-switchboard-with-electrical-connecting-cable_169016-18336.jpg",
|
||||
alt: "Professional electrician at work",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "AR Electrical Engineering - Kasaragod",
|
||||
description: "Professional electrical services. Call 082815 97838",
|
||||
images: ["http://img.b2bpic.net/free-photo/male-electrician-works-switchboard-with-electrical-connecting-cable_169016-18336.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -28,7 +60,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${poppins.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -40,4 +74,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -99,7 +99,7 @@ export default function HomePage() {
|
||||
tag="Trust Signals"
|
||||
title="Why Homeowners Choose AR Electrical"
|
||||
description="With a proven track record of excellent service and customer satisfaction, AR Electrical Engineering has become the trusted choice for electrical needs in Kasaragod and surrounding areas."
|
||||
imageSrc="http://img.b2bpic.net/free-vector/quality-badges_23-2147516098.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/quality-badges_23-2147516098.jpg?_wi=1"
|
||||
imageAlt="Trust and quality badges"
|
||||
mediaPosition="right"
|
||||
accordionItems={[
|
||||
@@ -143,7 +143,7 @@ export default function HomePage() {
|
||||
name: "House Wiring",
|
||||
price: "Affordable",
|
||||
variant: "Complete electrical wiring for new homes and renovations",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-cutting-wires_23-2148254069.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-cutting-wires_23-2148254069.jpg?_wi=1",
|
||||
imageAlt: "House wiring installation",
|
||||
},
|
||||
{
|
||||
@@ -151,7 +151,7 @@ export default function HomePage() {
|
||||
name: "Electrical Installation",
|
||||
price: "Reliable",
|
||||
variant: "Fans, lights, sockets, switches, and appliances",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/electrician-is-mounting-electric-sockets-white-wall-indoors_169016-17478.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/electrician-is-mounting-electric-sockets-white-wall-indoors_169016-17478.jpg?_wi=1",
|
||||
imageAlt: "Electrical installation service",
|
||||
},
|
||||
{
|
||||
@@ -159,7 +159,7 @@ export default function HomePage() {
|
||||
name: "Electrical Repairs",
|
||||
price: "Quick",
|
||||
variant: "Fix faulty wiring, circuit issues, and power failures",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-electrical-technician-working-switchboard-with-fuses_169016-24055.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-electrical-technician-working-switchboard-with-fuses_169016-24055.jpg?_wi=1",
|
||||
imageAlt: "Electrical repairs",
|
||||
},
|
||||
{
|
||||
@@ -167,7 +167,7 @@ export default function HomePage() {
|
||||
name: "Panel Board Installation",
|
||||
price: "Safe",
|
||||
variant: "Safe and organized electrical distribution boards",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-electrician-works-switchboard-with-electrical-connecting-cable_169016-52245.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-electrician-works-switchboard-with-electrical-connecting-cable_169016-52245.jpg?_wi=1",
|
||||
imageAlt: "Panel board installation",
|
||||
},
|
||||
{
|
||||
@@ -175,7 +175,7 @@ export default function HomePage() {
|
||||
name: "Lighting Installation",
|
||||
price: "Professional",
|
||||
variant: "Indoor and outdoor lighting setup and design",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-people-working-with-drill_23-2149366670.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-people-working-with-drill_23-2149366670.jpg?_wi=1",
|
||||
imageAlt: "Lighting installation",
|
||||
},
|
||||
{
|
||||
@@ -183,7 +183,7 @@ export default function HomePage() {
|
||||
name: "Maintenance Services",
|
||||
price: "Preventive",
|
||||
variant: "Regular maintenance to prevent electrical issues",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-electrician-repairs-wiring-inside-switchboard-night-precision-service_169016-70898.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-electrician-repairs-wiring-inside-switchboard-night-precision-service_169016-70898.jpg?_wi=1",
|
||||
imageAlt: "Maintenance services",
|
||||
},
|
||||
]}
|
||||
@@ -203,7 +203,7 @@ export default function HomePage() {
|
||||
quote: "Really great work and on time. Amazing job and strong commitment to customer satisfaction. Highly recommend AR Electrical for any electrical needs.",
|
||||
name: "Rajesh Kumar",
|
||||
role: "Homeowner, Bheemanady",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1620.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1620.jpg?_wi=1",
|
||||
imageAlt: "Rajesh Kumar",
|
||||
},
|
||||
{
|
||||
@@ -212,7 +212,7 @@ export default function HomePage() {
|
||||
quote: "Excellent service at any time. They responded quickly to my emergency call and fixed the problem professionally. Very affordable pricing too!",
|
||||
name: "Priya Menon",
|
||||
role: "Business Owner, Kasaragod",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-design-twitter-post-template_23-2149754244.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-design-twitter-post-template_23-2149754244.jpg?_wi=1",
|
||||
imageAlt: "Priya Menon",
|
||||
},
|
||||
{
|
||||
@@ -221,7 +221,7 @@ export default function HomePage() {
|
||||
quote: "AR Electrical is the team to call. They completed the entire house wiring project on schedule and within budget. Very professional and reliable.",
|
||||
name: "Vikram Singh",
|
||||
role: "Contractor, Kasaragod District",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/builder-man-wearing-construction-uniform-standing-with-arms-crossed-with-confident-smile-isolated-orange-wall_141793-14478.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/builder-man-wearing-construction-uniform-standing-with-arms-crossed-with-confident-smile-isolated-orange-wall_141793-14478.jpg?_wi=1",
|
||||
imageAlt: "Vikram Singh",
|
||||
},
|
||||
{
|
||||
@@ -230,7 +230,7 @@ export default function HomePage() {
|
||||
quote: "Strong commitment to customer satisfaction is evident in every project. They take pride in their work and it shows. Will definitely call them again!",
|
||||
name: "Anjali Nair",
|
||||
role: "Property Manager, Bheemanady",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-woman-typing-her-laptop_231208-13559.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-woman-typing-her-laptop_231208-13559.jpg?_wi=1",
|
||||
imageAlt: "Anjali Nair",
|
||||
},
|
||||
{
|
||||
@@ -239,7 +239,7 @@ export default function HomePage() {
|
||||
quote: "Called them for an urgent repair and they came immediately. Professional team, quality materials, and very reasonable rates. Highly satisfied!",
|
||||
name: "Mohammed Ali",
|
||||
role: "Business Owner, Kasaragod",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-man-grey-shirt-looking-front-with-clenched-fists-happy-excited-standing-pink-wall_141793-52902.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-man-grey-shirt-looking-front-with-clenched-fists-happy-excited-standing-pink-wall_141793-52902.jpg?_wi=1",
|
||||
imageAlt: "Mohammed Ali",
|
||||
},
|
||||
{
|
||||
@@ -248,7 +248,7 @@ export default function HomePage() {
|
||||
quote: "Great to have trusted local electricians in Kasaragod. They know the area well and provide service that's reliable and affordable. Top-notch team!",
|
||||
name: "Divya Sharma",
|
||||
role: "Homeowner, Kasaragod",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-home-with-book_23-2147611418.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-home-with-book_23-2147611418.jpg?_wi=1",
|
||||
imageAlt: "Divya Sharma",
|
||||
},
|
||||
]}
|
||||
@@ -304,7 +304,7 @@ export default function HomePage() {
|
||||
description="Contact AR Electrical Engineering for immediate assistance. We're here to help with all your electrical needs in Kasaragod."
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/focused-call-center-operator-typing-laptop_74855-4213.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/focused-call-center-operator-typing-laptop_74855-4213.jpg?_wi=1"
|
||||
mediaPosition="right"
|
||||
mediaAnimation="slide-up"
|
||||
inputPlaceholder="Enter your email"
|
||||
|
||||
@@ -85,7 +85,7 @@ export default function ReviewsPage() {
|
||||
quote: "Really great work and on time. Amazing job and strong commitment to customer satisfaction. Highly recommend AR Electrical for any electrical needs.",
|
||||
name: "Rajesh Kumar",
|
||||
role: "Homeowner, Bheemanady",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1620.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1620.jpg?_wi=3",
|
||||
imageAlt: "happy homeowner satisfied customer portrait",
|
||||
},
|
||||
{
|
||||
@@ -94,7 +94,7 @@ export default function ReviewsPage() {
|
||||
quote: "Excellent service at any time. They responded quickly to my emergency call and fixed the problem professionally. Very affordable pricing too!",
|
||||
name: "Priya Menon",
|
||||
role: "Business Owner, Kasaragod",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-design-twitter-post-template_23-2149754244.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/flat-design-twitter-post-template_23-2149754244.jpg?_wi=3",
|
||||
imageAlt: "happy business owner satisfied customer portrait",
|
||||
},
|
||||
{
|
||||
@@ -103,7 +103,7 @@ export default function ReviewsPage() {
|
||||
quote: "AR Electrical is the team to call. They completed the entire house wiring project on schedule and within budget. Very professional and reliable.",
|
||||
name: "Vikram Singh",
|
||||
role: "Contractor, Kasaragod District",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/builder-man-wearing-construction-uniform-standing-with-arms-crossed-with-confident-smile-isolated-orange-wall_141793-14478.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/builder-man-wearing-construction-uniform-standing-with-arms-crossed-with-confident-smile-isolated-orange-wall_141793-14478.jpg?_wi=3",
|
||||
imageAlt: "contractor satisfied customer testimonial portrait",
|
||||
},
|
||||
{
|
||||
@@ -112,7 +112,7 @@ export default function ReviewsPage() {
|
||||
quote: "Strong commitment to customer satisfaction is evident in every project. They take pride in their work and it shows. Will definitely call them again!",
|
||||
name: "Anjali Nair",
|
||||
role: "Property Manager, Bheemanady",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-woman-typing-her-laptop_231208-13559.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-woman-typing-her-laptop_231208-13559.jpg?_wi=2",
|
||||
imageAlt: "property manager customer satisfied portrait",
|
||||
},
|
||||
{
|
||||
@@ -121,7 +121,7 @@ export default function ReviewsPage() {
|
||||
quote: "Called them for an urgent repair and they came immediately. Professional team, quality materials, and very reasonable rates. Highly satisfied!",
|
||||
name: "Mohammed Ali",
|
||||
role: "Business Owner, Kasaragod",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-man-grey-shirt-looking-front-with-clenched-fists-happy-excited-standing-pink-wall_141793-52902.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-man-grey-shirt-looking-front-with-clenched-fists-happy-excited-standing-pink-wall_141793-52902.jpg?_wi=2",
|
||||
imageAlt: "business owner satisfied customer testimonial",
|
||||
},
|
||||
{
|
||||
@@ -130,7 +130,7 @@ export default function ReviewsPage() {
|
||||
quote: "Great to have trusted local electricians in Kasaragod. They know the area well and provide service that's reliable and affordable. Top-notch team!",
|
||||
name: "Divya Sharma",
|
||||
role: "Homeowner, Kasaragod",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-home-with-book_23-2147611418.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-home-with-book_23-2147611418.jpg?_wi=2",
|
||||
imageAlt: "homeowner satisfied customer testimonial portrait",
|
||||
},
|
||||
]}
|
||||
@@ -144,7 +144,7 @@ export default function ReviewsPage() {
|
||||
description="Contact AR Electrical Engineering for immediate assistance. We're here to help with all your electrical needs in Kasaragod."
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/focused-call-center-operator-typing-laptop_74855-4213.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/focused-call-center-operator-typing-laptop_74855-4213.jpg?_wi=3"
|
||||
mediaPosition="right"
|
||||
mediaAnimation="slide-up"
|
||||
inputPlaceholder="Enter your email"
|
||||
|
||||
@@ -78,7 +78,7 @@ export default function ServicesPage() {
|
||||
name: "House Wiring",
|
||||
price: "Starting at ₹500/point",
|
||||
variant: "Complete electrical wiring for new homes, renovations, and extensions",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-cutting-wires_23-2148254069.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-cutting-wires_23-2148254069.jpg?_wi=2",
|
||||
imageAlt: "House wiring installation",
|
||||
},
|
||||
{
|
||||
@@ -86,7 +86,7 @@ export default function ServicesPage() {
|
||||
name: "Installation Services",
|
||||
price: "Competitive Rates",
|
||||
variant: "Fans, lights, sockets, switches, and heavy appliances installation",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/electrician-is-mounting-electric-sockets-white-wall-indoors_169016-17478.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/electrician-is-mounting-electric-sockets-white-wall-indoors_169016-17478.jpg?_wi=2",
|
||||
imageAlt: "Electrical installation service",
|
||||
},
|
||||
{
|
||||
@@ -94,7 +94,7 @@ export default function ServicesPage() {
|
||||
name: "Emergency Repairs",
|
||||
price: "24/7 Available",
|
||||
variant: "Fast response to electrical faults, power failures, and hazardous situations",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-electrical-technician-working-switchboard-with-fuses_169016-24055.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-electrical-technician-working-switchboard-with-fuses_169016-24055.jpg?_wi=2",
|
||||
imageAlt: "Emergency electrical repairs",
|
||||
},
|
||||
{
|
||||
@@ -102,7 +102,7 @@ export default function ServicesPage() {
|
||||
name: "Panel Board Setup",
|
||||
price: "Safe & Certified",
|
||||
variant: "Professional electrical distribution boards and safety installations",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-electrician-works-switchboard-with-electrical-connecting-cable_169016-52245.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/male-electrician-works-switchboard-with-electrical-connecting-cable_169016-52245.jpg?_wi=2",
|
||||
imageAlt: "Panel board installation",
|
||||
},
|
||||
{
|
||||
@@ -110,7 +110,7 @@ export default function ServicesPage() {
|
||||
name: "Lighting Design",
|
||||
price: "Modern Solutions",
|
||||
variant: "Indoor, outdoor, and decorative lighting installations with LED technology",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-people-working-with-drill_23-2149366670.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/low-angle-people-working-with-drill_23-2149366670.jpg?_wi=2",
|
||||
imageAlt: "Professional lighting installation",
|
||||
},
|
||||
{
|
||||
@@ -118,7 +118,7 @@ export default function ServicesPage() {
|
||||
name: "Maintenance Plans",
|
||||
price: "Preventive Care",
|
||||
variant: "Regular inspections and maintenance to ensure system safety and reliability",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-electrician-repairs-wiring-inside-switchboard-night-precision-service_169016-70898.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-electrician-repairs-wiring-inside-switchboard-night-precision-service_169016-70898.jpg?_wi=2",
|
||||
imageAlt: "Electrical maintenance service",
|
||||
},
|
||||
]}
|
||||
@@ -130,7 +130,7 @@ export default function ServicesPage() {
|
||||
tag="Our Approach"
|
||||
title="Professional Service Standards"
|
||||
description="We follow industry-leading practices to ensure your electrical systems are safe, efficient, and built to last. Every project is handled with precision and professionalism."
|
||||
imageSrc="http://img.b2bpic.net/free-vector/quality-badges_23-2147516098.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/quality-badges_23-2147516098.jpg?_wi=2"
|
||||
imageAlt="Professional service standards"
|
||||
mediaPosition="left"
|
||||
accordionItems={[
|
||||
@@ -162,7 +162,7 @@ export default function ServicesPage() {
|
||||
description="Call us now or fill out the contact form to book your electrical service. Our team is ready to assist you with any electrical needs."
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/focused-call-center-operator-typing-laptop_74855-4213.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/focused-call-center-operator-typing-laptop_74855-4213.jpg?_wi=2"
|
||||
mediaPosition="right"
|
||||
mediaAnimation="slide-up"
|
||||
inputPlaceholder="Enter your email"
|
||||
|
||||
Reference in New Issue
Block a user