From 1fbc2d7eae8e0afb9af5431f1a623664aab789b7 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 21:21:13 +0000 Subject: [PATCH 1/7] Update src/app/gallery/page.tsx --- src/app/gallery/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index af28577..89d15de 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -94,7 +94,7 @@ export default function GalleryPage() { author: "Wash Specialists", description: "Complete exterior wash with foam treatment, tire shine, and hand dry. Watch your car go from dusty to pristine.", tags: ["Exterior", "Before & After"], - imageSrc: "http://img.b2bpic.net/free-photo/woman-washing-her-car-outside_23-2148958781.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/woman-washing-her-car-outside_23-2148958781.jpg?_wi=4", imageAlt: "Before and after exterior wash", }, { @@ -103,7 +103,7 @@ export default function GalleryPage() { author: "Interior Detail Team", description: "Full interior refresh including vacuum, dashboard cleaning, window polish, and odor treatment for a fresh cabin.", tags: ["Interior", "Deep Clean"], - imageSrc: "http://img.b2bpic.net/free-photo/stylish-elegant-couple-car-salon_1157-22274.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/stylish-elegant-couple-car-salon_1157-22274.jpg?_wi=4", imageAlt: "Interior detail transformation", }, { @@ -112,7 +112,7 @@ export default function GalleryPage() { author: "Premium Service", description: "Complete head-to-toe detail including exterior wash, interior deep clean, tire treatment, and premium polish finish.", tags: ["Full Service", "VIP"], - imageSrc: "http://img.b2bpic.net/free-photo/mechanic-servicing-car-with-vacuum-cleaner_1170-1709.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/mechanic-servicing-car-with-vacuum-cleaner_1170-1709.jpg?_wi=6", imageAlt: "Full spa service result", }, ]} -- 2.49.1 From 4d9ccdfdf38c2e220c8a6b7dad0237d0b698f7f4 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 21:21:14 +0000 Subject: [PATCH 2/7] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 42 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 32671a1..f9bbf85 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,56 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Open_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 { Open_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 openSans = Open_Sans({ variable: "--font-open-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Fresh Wash Auto Spa | Premium Car Wash & Detailing Jamaica", + description: "Luxury car wash and detailing in Jamaica. Premium service with a lounge bar. Clean Car. Cold Drinks. Good Vibes. Book now!", + keywords: "car wash Jamaica, auto spa, car detailing, luxury car wash, premium detailing", + openGraph: { + title: "Fresh Wash Auto Spa", + description: "Premium Car Wash & Detailing with Lounge Bar in Jamaica", + siteName: "Fresh Wash Auto Spa", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/man-working-car-detailing-coating-car_1303-30596.jpg", + alt: "Fresh Wash Auto Spa - Premium Car Wash", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Fresh Wash Auto Spa", + description: "Luxury car wash and detailing in Jamaica with premium lounge experience", + images: ["http://img.b2bpic.net/free-photo/close-up-person-cleaning-car-interior_23-2148194147.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +59,9 @@ export default function RootLayout({ return ( - + {children}