From 496b3fc6afb35f6fec982272b1a6f159ecc0af96 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 13:49:22 +0000 Subject: [PATCH 1/6] Update src/app/about/page.tsx --- src/app/about/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index bebab0c..345088f 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -113,7 +113,7 @@ export default function AboutPage() { handle: "Local Vehicle Owner", testimonial: "Matt is incredibly knowledgeable and honest. He fixed my truck issue quickly and explained everything clearly. Best mechanic in Rock Creek!", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/smiling-girl-with-open-hand-palm_1187-360.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/smiling-girl-with-open-hand-palm_1187-360.jpg?_wi=2", imageAlt: "professional portrait woman customer", }, { @@ -122,7 +122,7 @@ export default function AboutPage() { handle: "Business Owner", testimonial: "We bring all our company vehicles to Sovereign Grace. Matt's team is reliable, professional, and always transparent with pricing. Highly recommend!", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/closeup-satisfied-bearded-guy-white-shirt-showing-thumbs-up-approval-like-agree-positiv_1258-112532.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/closeup-satisfied-bearded-guy-white-shirt-showing-thumbs-up-approval-like-agree-positiv_1258-112532.jpg?_wi=2", imageAlt: "professional business man portrait", }, { @@ -131,7 +131,7 @@ export default function AboutPage() { handle: "Family with Multiple Cars", testimonial: "Matt diagnosed a problem no one else could find. His expertise saved us hundreds of dollars. We trust him completely with our vehicles.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/trendy-young-woman-looking-happy-with-thumb-up_1298-550.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/trendy-young-woman-looking-happy-with-thumb-up_1298-550.jpg?_wi=2", imageAlt: "professional woman portrait smiling", }, ]} -- 2.49.1 From 03c17ae76e64036cafdb0f80821185f1f77d413c Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 13:49:22 +0000 Subject: [PATCH 2/6] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 8ee8576..e4be10f 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -55,7 +55,7 @@ export default function ContactPage() { mediaPosition="right" inputPlaceholder="Enter your email" buttonText="Get Started" - imageSrc="http://img.b2bpic.net/free-photo/front-view-smiley-woman-posing_23-2150171294.jpg" + imageSrc="http://img.b2bpic.net/free-photo/front-view-smiley-woman-posing_23-2150171294.jpg?_wi=3" imageAlt="friendly mechanic team portrait" /> -- 2.49.1 From 0dc13dc4741089667d9373d6c31174808eaf6d5b Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 17 Mar 2026 13:49:23 +0000 Subject: [PATCH 3/6] Update src/app/layout.tsx --- src/app/layout.tsx | 47 ++++++++++++++++++++++++++++++++++------------ 1 file changed, 35 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index edb6b42..611e07d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,48 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Montserrat } 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 { Montserrat } 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 montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "Auto Repair Rock Creek | Sovereign Grace Automobile Services", + description: "Expert auto repair in Rock Creek, BC. 37 five-star reviews. Honest pricing, fast turnaround. Cars, trucks, heavy equipment. Book appointment or call now.", + keywords: "auto repair Rock Creek, mechanic, car service, truck repair, vehicle maintenance, heavy equipment service", + metadataBase: new URL("https://sovereigngraceauto.com"), + alternates: { + canonical: "https://sovereigngraceauto.com", + }, + openGraph: { + title: "Sovereign Grace Automobile Services", + description: "Reliable auto repair you can trust. Expert mechanics serving Rock Creek and surrounding areas.", + type: "website", + siteName: "Sovereign Grace Automobile Services", + }, + twitter: { + card: "summary_large_image", + title: "Auto Repair Rock Creek | Sovereign Grace Automobile Services", + description: "Expert service for cars, trucks, and machines. 37 five-star reviews. Fast turnaround, honest pricing.", + }, +}; export default function RootLayout({ children, @@ -31,7 +52,9 @@ export default function RootLayout({ return ( - + {children}