Merge version_1 into main #1

Merged
bender merged 5 commits from version_1 into main 2026-03-21 10:11:19 +00:00
5 changed files with 94 additions and 57 deletions

View File

@@ -116,7 +116,7 @@ export default function AboutPage() {
description: "We come to you anywhere within 5 miles of our Balham location. No dealership queues.",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/vehicle-mechanics-standing-by-tools-cart-choosing-appropriate-tool-truck-service_342744-1328.jpg"
imageSrc="http://img.b2bpic.net/free-photo/vehicle-mechanics-standing-by-tools-cart-choosing-appropriate-tool-truck-service_342744-1328.jpg?_wi=2"
imageAlt="Naz Car Mobile Mechanic team working on vehicle"
mediaAnimation="slide-up"
imagePosition="right"
@@ -201,11 +201,11 @@ export default function AboutPage() {
icon: "Award",
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/vehicle-mechanics-standing-by-tools-cart-choosing-appropriate-tool-truck-service_342744-1328.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/vehicle-mechanics-standing-by-tools-cart-choosing-appropriate-tool-truck-service_342744-1328.jpg?_wi=3",
imageAlt: "Certified technicians with equipment",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/mechanics-repairing-car-workshop_329181-11824.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/mechanics-repairing-car-workshop_329181-11824.jpg?_wi=3",
imageAlt: "Professional mechanics in workshop",
},
],
@@ -216,11 +216,11 @@ export default function AboutPage() {
icon: "Zap",
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/auto-mechanic-using-diagnostic-work-tool-while-checking-car-engine-workshop_637285-4263.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/auto-mechanic-using-diagnostic-work-tool-while-checking-car-engine-workshop_637285-4263.jpg?_wi=3",
imageAlt: "Advanced diagnostic equipment",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/auto-mechanic-using-laptop-while-talking-customer-repair-shop_637285-8614.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/auto-mechanic-using-laptop-while-talking-customer-repair-shop_637285-8614.jpg?_wi=3",
imageAlt: "Mechanic using diagnostic laptop",
},
],
@@ -231,11 +231,11 @@ export default function AboutPage() {
icon: "Heart",
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/mid-adult-businessman-with-touchpad-communicating-with-car-mechanics-auto-repair-shop_637285-4227.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/mid-adult-businessman-with-touchpad-communicating-with-car-mechanics-auto-repair-shop_637285-4227.jpg?_wi=2",
imageAlt: "Mechanic communicating with customer",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/satisfied-customer-signing-documents-while-communicating-with-auto-repairwoman-workshop-focus-is-woman_637285-7760.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/satisfied-customer-signing-documents-while-communicating-with-auto-repairwoman-workshop-focus-is-woman_637285-7760.jpg?_wi=2",
imageAlt: "Customer satisfaction focus",
},
],

View File

@@ -1,27 +1,62 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { DM_Sans } 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 { DM_Sans } 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 dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Premium Mobile Mechanic Service in London | Naz Car Mobile Mechanic",
description: "Professional mobile mechanic service in London with 4.9 star rating. Servicing, MOT, repairs & diagnostics at your location. Call +44 7770 807900 today.",
keywords: "mobile mechanic London, car servicing SW17, MOT testing Wimbledon, vehicle repairs London, professional mechanics Croydon, Kingston car service",
metadataBase: new URL("https://www.nazmobilemechanic.co.uk"),
alternates: {
canonical: "https://www.nazmobilemechanic.co.uk",
},
robots: {
index: true,
follow: true,
},
openGraph: {
title: "Premium Mobile Mechanic Service in London | Naz Car",
description: "Professional, reliable mobile mechanic service at your doorstep. 4.9★ rated. Servicing, MOT, repairs & diagnostics.",
siteName: "Naz Car Mobile Mechanic",
type: "website",
url: "https://www.nazmobilemechanic.co.uk",
images: [
{
url: "http://img.b2bpic.net/free-photo/this-is-simple-task-that-guy-man-blue-uniform-black-hat-repairing-damaged-automobile_146671-16089.jpg",
alt: "Professional mobile mechanic service London",
},
],
},
twitter: {
card: "summary_large_image",
title: "Premium Mobile Mechanic Service in London",
description: "Professional, reliable mobile mechanic. 4.9★ rated. Call +44 7770 807900",
images: [
"http://img.b2bpic.net/free-photo/this-is-simple-task-that-guy-man-blue-uniform-black-hat-repairing-damaged-automobile_146671-16089.jpg",
],
},
};
export default function RootLayout({
children,
@@ -31,7 +66,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -43,4 +80,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -120,7 +120,7 @@ export default function HomePage() {
},
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/this-is-simple-task-that-guy-man-blue-uniform-black-hat-repairing-damaged-automobile_146671-16089.jpg"
imageSrc="http://img.b2bpic.net/free-photo/this-is-simple-task-that-guy-man-blue-uniform-black-hat-repairing-damaged-automobile_146671-16089.jpg?_wi=1"
imageAlt="Professional mobile mechanic servicing a car in London"
mediaAnimation="slide-up"
ariaLabel="Hero section - Premium mobile mechanic service"
@@ -204,11 +204,11 @@ export default function HomePage() {
icon: Stethoscope,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/auto-mechanic-using-diagnostic-work-tool-while-checking-car-engine-workshop_637285-4263.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/auto-mechanic-using-diagnostic-work-tool-while-checking-car-engine-workshop_637285-4263.jpg?_wi=1",
imageAlt: "car diagnostic scanner equipment automotive",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/auto-mechanic-using-laptop-while-talking-customer-repair-shop_637285-8614.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/auto-mechanic-using-laptop-while-talking-customer-repair-shop_637285-8614.jpg?_wi=1",
imageAlt: "advanced vehicle diagnostics analysis equipment",
},
],
@@ -219,11 +219,11 @@ export default function HomePage() {
icon: Zap,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-servicing-car-engine_1170-1261.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-servicing-car-engine_1170-1261.jpg?_wi=1",
imageAlt: "starter motor car part automotive component",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-holding-connector_23-2148254107.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-holding-connector_23-2148254107.jpg?_wi=1",
imageAlt: "new starter motor ready for installation",
},
],
@@ -234,11 +234,11 @@ export default function HomePage() {
icon: Droplet,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/closeup-auto-repairman-checking-car-oil-workshop_637285-7638.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/closeup-auto-repairman-checking-car-oil-workshop_637285-7638.jpg?_wi=1",
imageAlt: "oil change service automotive maintenance",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-wiping-hands-with-cleaning-cloth_1170-1138.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-wiping-hands-with-cleaning-cloth_1170-1138.jpg?_wi=1",
imageAlt: "fresh oil filter installation automotive service",
},
],
@@ -249,11 +249,11 @@ export default function HomePage() {
icon: AlertCircle,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/female-mechanic-fixing-car-brake_1170-1623.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/female-mechanic-fixing-car-brake_1170-1623.jpg?_wi=1",
imageAlt: "brake system inspection professional mechanic",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-examining-car-tyre-using-flashlight_1170-1592.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-examining-car-tyre-using-flashlight_1170-1592.jpg?_wi=1",
imageAlt: "new brake pads installation professional service",
},
],
@@ -264,11 +264,11 @@ export default function HomePage() {
icon: CheckCircle,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/mechanics-repairing-car-workshop_329181-11824.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/mechanics-repairing-car-workshop_329181-11824.jpg?_wi=1",
imageAlt: "full vehicle servicing professional maintenance",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/car-mechanic-female-manager-talking-while-examining-car-engine-breakdown-auto-repair-shop_637285-7686.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/car-mechanic-female-manager-talking-while-examining-car-engine-breakdown-auto-repair-shop_637285-7686.jpg?_wi=1",
imageAlt: "vehicle service completion professional mechanic",
},
],
@@ -279,11 +279,11 @@ export default function HomePage() {
icon: Shield,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-checking-car_23-2150171226.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-checking-car_23-2150171226.jpg?_wi=1",
imageAlt: "MOT test vehicle inspection preparation",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/male-mechanics-working-together-car-shop_23-2150376986.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/male-mechanics-working-together-car-shop_23-2150376986.jpg?_wi=1",
imageAlt: "MOT test passed vehicle inspection result",
},
],
@@ -326,7 +326,7 @@ export default function HomePage() {
description: "We come to you anywhere within 5 miles of our Balham location. No dealership queues.",
},
]}
imageSrc="http://img.b2bpic.net/free-photo/vehicle-mechanics-standing-by-tools-cart-choosing-appropriate-tool-truck-service_342744-1328.jpg"
imageSrc="http://img.b2bpic.net/free-photo/vehicle-mechanics-standing-by-tools-cart-choosing-appropriate-tool-truck-service_342744-1328.jpg?_wi=1"
imageAlt="Naz Car Mobile Mechanic team working on vehicle"
mediaAnimation="slide-up"
imagePosition="right"
@@ -363,7 +363,7 @@ export default function HomePage() {
tag: "Verified Customer",
avatarSrc: "http://img.b2bpic.net/free-photo/portrait-happy-business-woman-posing-outdoors_23-2148603030.jpg",
avatarAlt: "Louis Galis",
imageSrc: "http://img.b2bpic.net/free-photo/mid-adult-businessman-with-touchpad-communicating-with-car-mechanics-auto-repair-shop_637285-4227.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/mid-adult-businessman-with-touchpad-communicating-with-car-mechanics-auto-repair-shop_637285-4227.jpg?_wi=1",
imageAlt: "mechanic providing friendly customer service",
},
{
@@ -375,7 +375,7 @@ export default function HomePage() {
tag: "Verified Customer",
avatarSrc: "http://img.b2bpic.net/free-photo/modern-woman-smiling-close-up_23-2148369441.jpg",
avatarAlt: "Akansha Kaansili",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-checking-car_23-2150171239.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-checking-car_23-2150171239.jpg?_wi=1",
imageAlt: "mechanic discussing car diagnostics with owner",
},
{
@@ -387,7 +387,7 @@ export default function HomePage() {
tag: "Verified Customer",
avatarSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1604.jpg",
avatarAlt: "Chris Mas",
imageSrc: "http://img.b2bpic.net/free-photo/satisfied-customer-signing-documents-while-communicating-with-auto-repairwoman-workshop-focus-is-woman_637285-7760.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/satisfied-customer-signing-documents-while-communicating-with-auto-repairwoman-workshop-focus-is-woman_637285-7760.jpg?_wi=1",
imageAlt: "quality automotive workmanship inspection",
},
{
@@ -399,7 +399,7 @@ export default function HomePage() {
tag: "Verified Customer",
avatarSrc: "http://img.b2bpic.net/free-photo/black-businessman-sad-expression_1194-2739.jpg",
avatarAlt: "Sarah Thompson",
imageSrc: "http://img.b2bpic.net/free-photo/young-courier-wearing-blue-uniform-blue-cap-smiles-shows-phone_141793-33873.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-courier-wearing-blue-uniform-blue-cap-smiles-shows-phone_141793-33873.jpg?_wi=1",
imageAlt: "mechanic team providing professional service",
},
{
@@ -411,7 +411,7 @@ export default function HomePage() {
tag: "Verified Customer",
avatarSrc: "http://img.b2bpic.net/free-photo/portrait-woman-smiling-kitchen_107420-12357.jpg",
avatarAlt: "James Wilson",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-customer-interaction-with-mechanic_1170-1431.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-customer-interaction-with-mechanic_1170-1431.jpg?_wi=1",
imageAlt: "mobile mechanic convenient home service",
},
{
@@ -423,7 +423,7 @@ export default function HomePage() {
tag: "Verified Customer",
avatarSrc: "http://img.b2bpic.net/free-photo/cheerful-middle-aged-businesswoman_1262-21005.jpg",
avatarAlt: "Emma Davies",
imageSrc: "http://img.b2bpic.net/free-photo/this-is-simple-task-that-guy-man-blue-uniform-black-hat-repairing-damaged-automobile_146671-16089.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/this-is-simple-task-that-guy-man-blue-uniform-black-hat-repairing-damaged-automobile_146671-16089.jpg?_wi=2",
imageAlt: "professional customer service interaction",
},
]}

View File

@@ -161,7 +161,7 @@ export default function ReviewsPage() {
tag: "Verified Customer",
avatarSrc: "http://img.b2bpic.net/free-photo/portrait-happy-business-woman-posing-outdoors_23-2148603030.jpg",
avatarAlt: "Louis Galis",
imageSrc: "http://img.b2bpic.net/free-photo/mid-adult-businessman-with-touchpad-communicating-with-car-mechanics-auto-repair-shop_637285-4227.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/mid-adult-businessman-with-touchpad-communicating-with-car-mechanics-auto-repair-shop_637285-4227.jpg?_wi=3",
},
{
id: "2",
@@ -172,7 +172,7 @@ export default function ReviewsPage() {
tag: "Verified Customer",
avatarSrc: "http://img.b2bpic.net/free-photo/modern-woman-smiling-close-up_23-2148369441.jpg",
avatarAlt: "Akansha Kaansili",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-checking-car_23-2150171239.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-checking-car_23-2150171239.jpg?_wi=2",
},
{
id: "3",
@@ -183,7 +183,7 @@ export default function ReviewsPage() {
tag: "Verified Customer",
avatarSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1604.jpg",
avatarAlt: "Chris Mas",
imageSrc: "http://img.b2bpic.net/free-photo/satisfied-customer-signing-documents-while-communicating-with-auto-repairwoman-workshop-focus-is-woman_637285-7760.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/satisfied-customer-signing-documents-while-communicating-with-auto-repairwoman-workshop-focus-is-woman_637285-7760.jpg?_wi=3",
},
{
id: "4",
@@ -194,7 +194,7 @@ export default function ReviewsPage() {
tag: "Verified Customer",
avatarSrc: "http://img.b2bpic.net/free-photo/black-businessman-sad-expression_1194-2739.jpg",
avatarAlt: "Sarah Thompson",
imageSrc: "http://img.b2bpic.net/free-photo/young-courier-wearing-blue-uniform-blue-cap-smiles-shows-phone_141793-33873.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-courier-wearing-blue-uniform-blue-cap-smiles-shows-phone_141793-33873.jpg?_wi=2",
},
{
id: "5",
@@ -205,7 +205,7 @@ export default function ReviewsPage() {
tag: "Verified Customer",
avatarSrc: "http://img.b2bpic.net/free-photo/portrait-woman-smiling-kitchen_107420-12357.jpg",
avatarAlt: "James Wilson",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-customer-interaction-with-mechanic_1170-1431.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-customer-interaction-with-mechanic_1170-1431.jpg?_wi=2",
},
{
id: "6",
@@ -216,7 +216,7 @@ export default function ReviewsPage() {
tag: "Verified Customer",
avatarSrc: "http://img.b2bpic.net/free-photo/cheerful-middle-aged-businesswoman_1262-21005.jpg",
avatarAlt: "Emma Davies",
imageSrc: "http://img.b2bpic.net/free-photo/this-is-simple-task-that-guy-man-blue-uniform-black-hat-repairing-damaged-automobile_146671-16089.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/this-is-simple-task-that-guy-man-blue-uniform-black-hat-repairing-damaged-automobile_146671-16089.jpg?_wi=3",
},
]}
ariaLabel="Testimonials section - Customer reviews and feedback"

View File

@@ -119,11 +119,11 @@ export default function ServicesPage() {
icon: Stethoscope,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/auto-mechanic-using-diagnostic-work-tool-while-checking-car-engine-workshop_637285-4263.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/auto-mechanic-using-diagnostic-work-tool-while-checking-car-engine-workshop_637285-4263.jpg?_wi=2",
imageAlt: "car diagnostic scanner equipment automotive",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/auto-mechanic-using-laptop-while-talking-customer-repair-shop_637285-8614.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/auto-mechanic-using-laptop-while-talking-customer-repair-shop_637285-8614.jpg?_wi=2",
imageAlt: "advanced vehicle diagnostics analysis equipment",
},
],
@@ -134,11 +134,11 @@ export default function ServicesPage() {
icon: Zap,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-servicing-car-engine_1170-1261.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-servicing-car-engine_1170-1261.jpg?_wi=2",
imageAlt: "starter motor car part automotive component",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-holding-connector_23-2148254107.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-holding-connector_23-2148254107.jpg?_wi=2",
imageAlt: "new starter motor ready for installation",
},
],
@@ -149,11 +149,11 @@ export default function ServicesPage() {
icon: Droplet,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/closeup-auto-repairman-checking-car-oil-workshop_637285-7638.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/closeup-auto-repairman-checking-car-oil-workshop_637285-7638.jpg?_wi=2",
imageAlt: "oil change service automotive maintenance",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-wiping-hands-with-cleaning-cloth_1170-1138.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-wiping-hands-with-cleaning-cloth_1170-1138.jpg?_wi=2",
imageAlt: "fresh oil filter installation automotive service",
},
],
@@ -164,11 +164,11 @@ export default function ServicesPage() {
icon: AlertCircle,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/female-mechanic-fixing-car-brake_1170-1623.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/female-mechanic-fixing-car-brake_1170-1623.jpg?_wi=2",
imageAlt: "brake system inspection professional mechanic",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-examining-car-tyre-using-flashlight_1170-1592.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-examining-car-tyre-using-flashlight_1170-1592.jpg?_wi=2",
imageAlt: "new brake pads installation professional service",
},
],
@@ -179,11 +179,11 @@ export default function ServicesPage() {
icon: CheckCircle,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/mechanics-repairing-car-workshop_329181-11824.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/mechanics-repairing-car-workshop_329181-11824.jpg?_wi=2",
imageAlt: "full vehicle servicing professional maintenance",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/car-mechanic-female-manager-talking-while-examining-car-engine-breakdown-auto-repair-shop_637285-7686.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/car-mechanic-female-manager-talking-while-examining-car-engine-breakdown-auto-repair-shop_637285-7686.jpg?_wi=2",
imageAlt: "vehicle service completion professional mechanic",
},
],
@@ -194,11 +194,11 @@ export default function ServicesPage() {
icon: Shield,
mediaItems: [
{
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-checking-car_23-2150171226.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-checking-car_23-2150171226.jpg?_wi=2",
imageAlt: "MOT test vehicle inspection preparation",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/male-mechanics-working-together-car-shop_23-2150376986.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/male-mechanics-working-together-car-shop_23-2150376986.jpg?_wi=2",
imageAlt: "MOT test passed vehicle inspection result",
},
],