Merge version_1 into main #1

Merged
bender merged 6 commits from version_1 into main 2026-03-11 14:24:10 +00:00
6 changed files with 90 additions and 55 deletions

View File

@@ -49,7 +49,7 @@ export default function AboutPage() {
tag="Local & Experienced"
tagIcon={Award}
tagAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/auto-mechanic-looking-selection-wrappers_23-2147897822.jpg"
imageSrc="http://img.b2bpic.net/free-photo/auto-mechanic-looking-selection-wrappers_23-2147897822.jpg?_wi=2"
imageAlt="Expert mechanic performing repair"
buttons={[
{
@@ -76,7 +76,7 @@ export default function AboutPage() {
author: "Expert Diagnostics",
description: "From minor engine repairs to complete engine replacements. We handle all engine issues with precision and care.",
tags: ["Engine", "Diagnostics"],
imageSrc: "http://img.b2bpic.net/free-photo/female-mechanic-examining-car-engine-with-help-laptop_1170-1531.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/female-mechanic-examining-car-engine-with-help-laptop_1170-1531.jpg?_wi=3",
},
{
id: "2",
@@ -84,7 +84,7 @@ export default function AboutPage() {
author: "Cooling Solutions",
description: "Keep your vehicle comfortable year-round. We repair and service all AC and climate control systems.",
tags: ["AC", "Comfort"],
imageSrc: "http://img.b2bpic.net/free-photo/chroma-key-laptop-with-air-conditioner_482257-90912.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/chroma-key-laptop-with-air-conditioner_482257-90912.jpg?_wi=3",
},
{
id: "3",
@@ -92,7 +92,7 @@ export default function AboutPage() {
author: "Safety First",
description: "Your safety is our priority. Complete brake repair, replacement, and maintenance services.",
tags: ["Brakes", "Safety"],
imageSrc: "http://img.b2bpic.net/free-photo/female-auto-repairer-working-shop-car_23-2150170004.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/female-auto-repairer-working-shop-car_23-2150170004.jpg?_wi=3",
},
]}
animationType="slide-up"

View File

@@ -50,7 +50,7 @@ export default function ContactPage() {
tagIcon={CheckCircle}
tagAnimation="slide-up"
background={{ variant: "sparkles-gradient" }}
imageSrc="http://img.b2bpic.net/free-photo/repairmen-fix-car-together_482257-102916.jpg"
imageSrc="http://img.b2bpic.net/free-photo/repairmen-fix-car-together_482257-102916.jpg?_wi=2"
imageAlt="Robbie's Auto Repair garage"
mediaAnimation="blur-reveal"
imagePosition="right"
@@ -60,7 +60,7 @@ export default function ContactPage() {
handle: "Dallas, GA",
testimonial: "Best mechanic in town with great prices. They saved me $580 on a repair another shop quoted at $794. Highly recommend!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/outdoors-portrait-smiley-woman_23-2148486217.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/outdoors-portrait-smiley-woman_23-2148486217.jpg?_wi=2",
imageAlt: "professional headshot woman portrait",
},
{
@@ -68,7 +68,7 @@ export default function ContactPage() {
handle: "Paulding County",
testimonial: "Charged me $214 for a repair. Another shop quoted $794 for the same work. These guys are honest.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/stylish-bearded-male-dressed-business-suit-white-shirt_613910-8307.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/stylish-bearded-male-dressed-business-suit-white-shirt_613910-8307.jpg?_wi=2",
imageAlt: "professional headshot man portrait",
},
{
@@ -76,7 +76,7 @@ export default function ContactPage() {
handle: "Dallas, GA",
testimonial: "Same day service and reasonably priced. Very honest and reliable mechanics. Will definitely come back!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-ambitious-cheerful-brunette-adult-caucasian-woman-starting-own-mother-blog-sharing-thoughts-camera-extend-arms-smiling-broadly-upbeat-mood-taking-selfie-smartphone_176420-56150.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-ambitious-cheerful-brunette-adult-caucasian-woman-starting-own-mother-blog-sharing-thoughts-camera-extend-arms-smiling-broadly-upbeat-mood-taking-selfie-smartphone_176420-56150.jpg?_wi=2",
imageAlt: "asian woman professional headshot",
},
{
@@ -84,7 +84,7 @@ export default function ContactPage() {
handle: "Paulding County",
testimonial: "Local shop that actually cares about their customers. Fair prices and quality work. Highly recommend.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-modern-male_23-2148514900.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-modern-male_23-2148514900.jpg?_wi=2",
imageAlt: "male customer professional portrait",
},
]}
@@ -114,7 +114,7 @@ export default function ContactPage() {
tagAnimation="slide-up"
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/auto-repairman-businessman-analyzing-reports-while-working-car-workshop_637285-7576.jpg"
imageSrc="http://img.b2bpic.net/free-photo/auto-repairman-businessman-analyzing-reports-while-working-car-workshop_637285-7576.jpg?_wi=4"
imageAlt="friendly auto repair shop interior"
mediaAnimation="blur-reveal"
mediaPosition="right"

View File

@@ -1,27 +1,60 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Public_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 { Public_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 publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Robbie's Auto Repair | Honest Service in Dallas, GA",
description: "Trusted local auto repair in Dallas, GA with 4.8★ rating. Honest diagnostics, fair pricing, same-day service. Call (770) 485-7788 for your free estimate.",
keywords: "auto repair Dallas GA, mechanic Dallas GA, engine repair, brake service, AC repair, auto diagnostics",
metadataBase: new URL("https://robbies-auto-repair.com"),
alternates: {
canonical: "https://robbies-auto-repair.com",
},
openGraph: {
title: "Robbie's Auto Repair | Honest Service in Dallas, GA",
description: "Trusted local mechanic with 4.8★ rating. Fair prices, honest diagnostics, same-day service available.",
url: "https://robbies-auto-repair.com",
siteName: "Robbie's Auto Repair",
type: "website",
images: [
{
url: "https://robbies-auto-repair.com/og-image.jpg",
alt: "Robbie's Auto Repair Shop",
},
],
},
twitter: {
card: "summary_large_image",
title: "Robbie's Auto Repair | Trusted Local Mechanic",
description: "Honest auto repair with 4.8★ customer rating. Fair pricing, expert service, Dallas GA.",
images: ["https://robbies-auto-repair.com/twitter-image.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
@@ -31,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${publicSans.variable} ${inter.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -43,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -54,7 +54,7 @@ export default function HomePage() {
tagIcon={CheckCircle}
tagAnimation="slide-up"
background={{ variant: "sparkles-gradient" }}
imageSrc="http://img.b2bpic.net/free-photo/repairmen-fix-car-together_482257-102916.jpg"
imageSrc="http://img.b2bpic.net/free-photo/repairmen-fix-car-together_482257-102916.jpg?_wi=1"
imageAlt="Robbie's Auto Repair garage"
mediaAnimation="blur-reveal"
imagePosition="right"
@@ -64,28 +64,28 @@ export default function HomePage() {
handle: "Dallas, GA",
testimonial: "Best mechanic in town with great prices. They saved me $580 on a repair another shop quoted at $794. Highly recommend!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/outdoors-portrait-smiley-woman_23-2148486217.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/outdoors-portrait-smiley-woman_23-2148486217.jpg?_wi=1",
},
{
name: "James Rodriguez",
handle: "Paulding County",
testimonial: "Charged me $214 for a repair. Another shop quoted $794 for the same work. These guys are honest.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/stylish-bearded-male-dressed-business-suit-white-shirt_613910-8307.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/stylish-bearded-male-dressed-business-suit-white-shirt_613910-8307.jpg?_wi=1",
},
{
name: "Maria Chen",
handle: "Dallas, GA",
testimonial: "Same day service and reasonably priced. Very honest and reliable mechanics. Will definitely come back!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-ambitious-cheerful-brunette-adult-caucasian-woman-starting-own-mother-blog-sharing-thoughts-camera-extend-arms-smiling-broadly-upbeat-mood-taking-selfie-smartphone_176420-56150.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/closeup-happy-ambitious-cheerful-brunette-adult-caucasian-woman-starting-own-mother-blog-sharing-thoughts-camera-extend-arms-smiling-broadly-upbeat-mood-taking-selfie-smartphone_176420-56150.jpg?_wi=1",
},
{
name: "David Thompson",
handle: "Paulding County",
testimonial: "Local shop that actually cares about their customers. Fair prices and quality work. Highly recommend.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-modern-male_23-2148514900.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiley-modern-male_23-2148514900.jpg?_wi=1",
},
]}
testimonialRotationInterval={5000}
@@ -111,7 +111,7 @@ export default function HomePage() {
tag="Local & Experienced"
tagIcon={Award}
tagAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/auto-mechanic-looking-selection-wrappers_23-2147897822.jpg"
imageSrc="http://img.b2bpic.net/free-photo/auto-mechanic-looking-selection-wrappers_23-2147897822.jpg?_wi=1"
imageAlt="Expert mechanic performing repair"
buttons={[
{
@@ -138,7 +138,7 @@ export default function HomePage() {
author: "Expert Diagnostics",
description: "From minor engine repairs to complete engine replacements. We handle all engine issues with precision and care.",
tags: ["Engine", "Diagnostics"],
imageSrc: "http://img.b2bpic.net/free-photo/female-mechanic-examining-car-engine-with-help-laptop_1170-1531.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/female-mechanic-examining-car-engine-with-help-laptop_1170-1531.jpg?_wi=1",
},
{
id: "2",
@@ -146,7 +146,7 @@ export default function HomePage() {
author: "Cooling Solutions",
description: "Keep your vehicle comfortable year-round. We repair and service all AC and climate control systems.",
tags: ["AC", "Comfort"],
imageSrc: "http://img.b2bpic.net/free-photo/chroma-key-laptop-with-air-conditioner_482257-90912.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/chroma-key-laptop-with-air-conditioner_482257-90912.jpg?_wi=1",
},
{
id: "3",
@@ -154,7 +154,7 @@ export default function HomePage() {
author: "Safety First",
description: "Your safety is our priority. Complete brake repair, replacement, and maintenance services.",
tags: ["Brakes", "Safety"],
imageSrc: "http://img.b2bpic.net/free-photo/female-auto-repairer-working-shop-car_23-2150170004.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/female-auto-repairer-working-shop-car_23-2150170004.jpg?_wi=1",
},
{
id: "4",
@@ -162,7 +162,7 @@ export default function HomePage() {
author: "Smooth Shifting",
description: "Transmission problems? We diagnose and repair all transmission issues efficiently and affordably.",
tags: ["Transmission", "Service"],
imageSrc: "http://img.b2bpic.net/free-photo/repairmen-examining-wheel-structure_23-2147897944.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/repairmen-examining-wheel-structure_23-2147897944.jpg?_wi=1",
},
{
id: "5",
@@ -170,7 +170,7 @@ export default function HomePage() {
author: "Accurate Scanning",
description: "Don't ignore that light! We provide comprehensive diagnostics to identify the exact issue.",
tags: ["Diagnostics", "Scanner"],
imageSrc: "http://img.b2bpic.net/free-photo/young-black-car-mechanic-using-computer-with-his-manager-auto-repair-shop_637285-4243.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-black-car-mechanic-using-computer-with-his-manager-auto-repair-shop_637285-4243.jpg?_wi=1",
},
{
id: "6",
@@ -178,7 +178,7 @@ export default function HomePage() {
author: "Preventative Care",
description: "Oil changes, filter replacements, fluid top-ups, and routine maintenance to keep your vehicle running smoothly.",
tags: ["Maintenance", "Preventative"],
imageSrc: "http://img.b2bpic.net/free-photo/mechanics-checking-planning-workshop_329181-11825.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/mechanics-checking-planning-workshop_329181-11825.jpg?_wi=1",
},
]}
animationType="slide-up"
@@ -244,7 +244,7 @@ export default function HomePage() {
handle: "@sarah_m_dallas",
testimonial: "Best mechanic in town with great prices. They saved me $580 on a repair another shop quoted at $794!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/abstract-gradient-executive-formal-professional_1187-4886.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/abstract-gradient-executive-formal-professional_1187-4886.jpg?_wi=1",
},
{
id: "2",
@@ -252,7 +252,7 @@ export default function HomePage() {
handle: "@james_r_auto",
testimonial: "Charged me $214 for a repair another shop quoted $794 for. These guys are honest and fair.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-outdoors-portrait_158595-3551.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-outdoors-portrait_158595-3551.jpg?_wi=1",
},
{
id: "3",
@@ -260,7 +260,7 @@ export default function HomePage() {
handle: "@maria_chen",
testimonial: "Same day service and reasonably priced. Very honest and reliable mechanics. Highly recommend!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-smiling-confident-standing-street_839833-33403.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-smiling-confident-standing-street_839833-33403.jpg?_wi=1",
},
{
id: "4",
@@ -268,7 +268,7 @@ export default function HomePage() {
handle: "@david_mech",
testimonial: "Local shop that actually cares about their customers. Fair prices and quality work every time.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-smiling-man_23-2149022653.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-smiling-man_23-2149022653.jpg?_wi=1",
},
{
id: "5",
@@ -276,7 +276,7 @@ export default function HomePage() {
handle: "@jen_brooks",
testimonial: "Finally found an honest mechanic! No unnecessary upselling, just quality service at fair prices.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-woman-looking-camera_23-2147774837.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-woman-looking-camera_23-2147774837.jpg?_wi=1",
},
{
id: "6",
@@ -284,7 +284,7 @@ export default function HomePage() {
handle: "@miketor",
testimonial: "Been coming to Robbie's for 5 years. Consistent quality, honest advice, and reasonable rates.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-face-portrait-wearing-suit_53876-148135.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-face-portrait-wearing-suit_53876-148135.jpg?_wi=1",
},
]}
showRating={true}
@@ -350,7 +350,7 @@ export default function HomePage() {
tagAnimation="slide-up"
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/auto-repairman-businessman-analyzing-reports-while-working-car-workshop_637285-7576.jpg"
imageSrc="http://img.b2bpic.net/free-photo/auto-repairman-businessman-analyzing-reports-while-working-car-workshop_637285-7576.jpg?_wi=1"
imageAlt="Robbie's Auto Repair shop interior"
mediaAnimation="blur-reveal"
mediaPosition="right"

View File

@@ -56,7 +56,7 @@ export default function ReviewsPage() {
handle: "@sarah_m_dallas",
testimonial: "Best mechanic in town with great prices. They saved me $580 on a repair another shop quoted at $794!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/abstract-gradient-executive-formal-professional_1187-4886.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/abstract-gradient-executive-formal-professional_1187-4886.jpg?_wi=2",
},
{
id: "2",
@@ -64,7 +64,7 @@ export default function ReviewsPage() {
handle: "@james_r_auto",
testimonial: "Charged me $214 for a repair another shop quoted $794 for. These guys are honest and fair.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-outdoors-portrait_158595-3551.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-outdoors-portrait_158595-3551.jpg?_wi=2",
},
{
id: "3",
@@ -72,7 +72,7 @@ export default function ReviewsPage() {
handle: "@maria_chen",
testimonial: "Same day service and reasonably priced. Very honest and reliable mechanics. Highly recommend!",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-smiling-confident-standing-street_839833-33403.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-smiling-confident-standing-street_839833-33403.jpg?_wi=2",
},
{
id: "4",
@@ -80,7 +80,7 @@ export default function ReviewsPage() {
handle: "@david_mech",
testimonial: "Local shop that actually cares about their customers. Fair prices and quality work every time.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-smiling-man_23-2149022653.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-happy-smiling-man_23-2149022653.jpg?_wi=2",
},
{
id: "5",
@@ -88,7 +88,7 @@ export default function ReviewsPage() {
handle: "@jen_brooks",
testimonial: "Finally found an honest mechanic! No unnecessary upselling, just quality service at fair prices.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-woman-looking-camera_23-2147774837.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-woman-looking-camera_23-2147774837.jpg?_wi=2",
},
{
id: "6",
@@ -96,7 +96,7 @@ export default function ReviewsPage() {
handle: "@miketor",
testimonial: "Been coming to Robbie's for 5 years. Consistent quality, honest advice, and reasonable rates.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-face-portrait-wearing-suit_53876-148135.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-face-portrait-wearing-suit_53876-148135.jpg?_wi=2",
},
]}
showRating={true}
@@ -152,7 +152,7 @@ export default function ReviewsPage() {
tagAnimation="slide-up"
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/auto-repairman-businessman-analyzing-reports-while-working-car-workshop_637285-7576.jpg"
imageSrc="http://img.b2bpic.net/free-photo/auto-repairman-businessman-analyzing-reports-while-working-car-workshop_637285-7576.jpg?_wi=3"
imageAlt="Robbie's Auto Repair shop interior"
mediaAnimation="blur-reveal"
mediaPosition="right"

View File

@@ -61,7 +61,7 @@ export default function ServicesPage() {
author: "Expert Diagnostics",
description: "From minor engine repairs to complete engine replacements. We handle all engine issues with precision and care.",
tags: ["Engine", "Diagnostics"],
imageSrc: "http://img.b2bpic.net/free-photo/female-mechanic-examining-car-engine-with-help-laptop_1170-1531.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/female-mechanic-examining-car-engine-with-help-laptop_1170-1531.jpg?_wi=2",
},
{
id: "2",
@@ -69,7 +69,7 @@ export default function ServicesPage() {
author: "Cooling Solutions",
description: "Keep your vehicle comfortable year-round. We repair and service all AC and climate control systems.",
tags: ["AC", "Comfort"],
imageSrc: "http://img.b2bpic.net/free-photo/chroma-key-laptop-with-air-conditioner_482257-90912.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/chroma-key-laptop-with-air-conditioner_482257-90912.jpg?_wi=2",
},
{
id: "3",
@@ -77,7 +77,7 @@ export default function ServicesPage() {
author: "Safety First",
description: "Your safety is our priority. Complete brake repair, replacement, and maintenance services.",
tags: ["Brakes", "Safety"],
imageSrc: "http://img.b2bpic.net/free-photo/female-auto-repairer-working-shop-car_23-2150170004.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/female-auto-repairer-working-shop-car_23-2150170004.jpg?_wi=2",
},
{
id: "4",
@@ -85,7 +85,7 @@ export default function ServicesPage() {
author: "Smooth Shifting",
description: "Transmission problems? We diagnose and repair all transmission issues efficiently and affordably.",
tags: ["Transmission", "Service"],
imageSrc: "http://img.b2bpic.net/free-photo/repairmen-examining-wheel-structure_23-2147897944.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/repairmen-examining-wheel-structure_23-2147897944.jpg?_wi=2",
},
{
id: "5",
@@ -93,7 +93,7 @@ export default function ServicesPage() {
author: "Accurate Scanning",
description: "Don't ignore that light! We provide comprehensive diagnostics to identify the exact issue.",
tags: ["Diagnostics", "Scanner"],
imageSrc: "http://img.b2bpic.net/free-photo/young-black-car-mechanic-using-computer-with-his-manager-auto-repair-shop_637285-4243.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-black-car-mechanic-using-computer-with-his-manager-auto-repair-shop_637285-4243.jpg?_wi=2",
},
{
id: "6",
@@ -101,7 +101,7 @@ export default function ServicesPage() {
author: "Preventative Care",
description: "Oil changes, filter replacements, fluid top-ups, and routine maintenance to keep your vehicle running smoothly.",
tags: ["Maintenance", "Preventative"],
imageSrc: "http://img.b2bpic.net/free-photo/mechanics-checking-planning-workshop_329181-11825.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/mechanics-checking-planning-workshop_329181-11825.jpg?_wi=2",
},
]}
animationType="slide-up"
@@ -126,7 +126,7 @@ export default function ServicesPage() {
tagAnimation="slide-up"
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/auto-repairman-businessman-analyzing-reports-while-working-car-workshop_637285-7576.jpg"
imageSrc="http://img.b2bpic.net/free-photo/auto-repairman-businessman-analyzing-reports-while-working-car-workshop_637285-7576.jpg?_wi=2"
imageAlt="Robbie's Auto Repair shop interior"
mediaAnimation="blur-reveal"
mediaPosition="right"