diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index d79d0d4..59ef6f0 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -80,21 +80,21 @@ export default function AboutPage() { id: "1", name: "Mohammed Ali", role: "Senior Detailer", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-car-care-process_23-2149193590.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/close-up-car-care-process_23-2149193590.jpg?_wi=2", imageAlt: "Mohammed Ali", }, { id: "2", name: "Ahmed Hassan", role: "Valet Specialist", - imageSrc: "http://img.b2bpic.net/free-photo/asian-man-wear-all-black-posed-near-suv-car-smoke-hookah_627829-3706.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/asian-man-wear-all-black-posed-near-suv-car-smoke-hookah_627829-3706.jpg?_wi=2", imageAlt: "Ahmed Hassan", }, { id: "3", name: "Karim Khan", role: "Owner & Manager", - imageSrc: "http://img.b2bpic.net/free-photo/african-american-mechanic-businesswoman-wearing-face-masks-while-using-touchpad-repair-shop_637285-10532.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/african-american-mechanic-businesswoman-wearing-face-masks-while-using-touchpad-repair-shop_637285-10532.jpg?_wi=2", imageAlt: "Karim Khan", }, ]} diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 3a4923a..ed2f616 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -88,7 +88,7 @@ export default function ContactPage() { ]} buttonAnimation="slide-up" background={{ variant: "animated-grid" }} - imageSrc="http://img.b2bpic.net/free-photo/young-man-washing-car-carwash-station-outdoor_651396-2002.jpg" + imageSrc="http://img.b2bpic.net/free-photo/young-man-washing-car-carwash-station-outdoor_651396-2002.jpg?_wi=2" imageAlt="Professional car wash service in Oldham" mediaAnimation="opacity" frameStyle="card" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 282ff27..fb9fd8f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Nunito_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 { Nunito_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 nunitoSans = Nunito_Sans({ variable: "--font-nunito-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "UK's Hand Car Wash - Premium Hand Wash Car Service Oldham", + description: "Professional hand car wash service in Oldham. 4.6★ rated. Mini valet from £15, full valet from £45. Book via WhatsApp. Fast, affordable, trusted.", + keywords: "car wash Oldham, hand car wash, mini valet, full valet, car detailing, car cleaning service UK", + metadataBase: new URL("https://ukhandcarwash.co.uk"), + alternates: { + canonical: "https://ukhandcarwash.co.uk", + }, + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "UK's Hand Car Wash - Premium Car Washing Services Oldham", + description: "Professional hand car wash in Oldham. 4.6★ rated by 144+ customers. Book your appointment via WhatsApp.", + url: "https://ukhandcarwash.co.uk", + siteName: "UK's Hand Car Wash LTD", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/young-man-washing-car-carwash-station-outdoor_651396-2002.jpg", + alt: "UK's Hand Car Wash - Professional Car Washing Service", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "UK's Hand Car Wash - Premium Car Washing Oldham", + description: "Professional hand car wash service. 4.6★ rated. Book via WhatsApp +44 7729 812666", + images: ["http://img.b2bpic.net/free-photo/young-man-washing-car-carwash-station-outdoor_651396-2002.jpg"], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}