Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -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",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${nunitoSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -61,7 +61,7 @@ export default function HomePage() {
|
||||
]}
|
||||
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=1"
|
||||
imageAlt="Professional car wash service in Oldham"
|
||||
mediaAnimation="opacity"
|
||||
frameStyle="card"
|
||||
@@ -81,11 +81,11 @@ export default function HomePage() {
|
||||
title: "Mini Valet",
|
||||
description: "30-40 minutes. Exterior wash, tyres cleaned, windows polished. Perfect for regular maintenance. £15 - £20",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-car-care-process_23-2149193143.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-car-care-process_23-2149193143.jpg?_wi=1",
|
||||
imageAlt: "Mini valet service",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/car-wash-detailing-station_1303-22299.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/car-wash-detailing-station_1303-22299.jpg?_wi=1",
|
||||
imageAlt: "Exterior shine service",
|
||||
},
|
||||
},
|
||||
@@ -94,11 +94,11 @@ export default function HomePage() {
|
||||
title: "Full Valet",
|
||||
description: "Comprehensive interior & exterior cleaning. Deep carpet vacuum, dashboard detail, engine bay wash, full polish and wax. Premium finish. £45 - £65",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-cleaning-tools_23-2150552297.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-cleaning-tools_23-2150552297.jpg?_wi=1",
|
||||
imageAlt: "Full valet service",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-blue-uniform-checks-car_1157-31515.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-blue-uniform-checks-car_1157-31515.jpg?_wi=1",
|
||||
imageAlt: "Interior cleaning service",
|
||||
},
|
||||
},
|
||||
@@ -107,11 +107,11 @@ export default function HomePage() {
|
||||
title: "Interior Deep Clean",
|
||||
description: "Vacuum all carpets and seats, wipe-down interior surfaces, air freshening, upholstery protection. Like new inside. £20 - £35",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-blue-uniform-checks-car_1157-31515.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-blue-uniform-checks-car_1157-31515.jpg?_wi=2",
|
||||
imageAlt: "Interior detail service",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-smiling-while-examining-car-engine-with-lamp_1170-1292.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-smiling-while-examining-car-engine-with-lamp_1170-1292.jpg?_wi=1",
|
||||
imageAlt: "Engine bay cleaning",
|
||||
},
|
||||
},
|
||||
@@ -161,37 +161,37 @@ export default function HomePage() {
|
||||
{
|
||||
id: "1",
|
||||
name: "J Jones",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-talking-mobile-phone-waiting-area_107420-95801.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-talking-mobile-phone-waiting-area_107420-95801.jpg?_wi=1",
|
||||
imageAlt: "J Jones",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Zobair Hussain",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/horizontal-shot-beautiful-confident-young-african-american-woman-dressed-stylish-purple-turtleneck-smiling-joyfully-showing-ok-gesture_344912-1015.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/horizontal-shot-beautiful-confident-young-african-american-woman-dressed-stylish-purple-turtleneck-smiling-joyfully-showing-ok-gesture_344912-1015.jpg?_wi=1",
|
||||
imageAlt: "Zobair Hussain",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "PAULPABLO PABLO",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-young-man-stylish-hat-relaxing-alone-cozy-cafeteria-lunch-break-looking-with-happy-expression_273609-1935.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-young-man-stylish-hat-relaxing-alone-cozy-cafeteria-lunch-break-looking-with-happy-expression_273609-1935.jpg?_wi=1",
|
||||
imageAlt: "PAULPABLO PABLO",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Sarah Mitchell",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-mature-businessman-showing-thumb-up_1262-3024.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-mature-businessman-showing-thumb-up_1262-3024.jpg?_wi=1",
|
||||
imageAlt: "Sarah Mitchell",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "David Chen",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/customer-satisfaction-concept-flat-style_23-2147942037.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/customer-satisfaction-concept-flat-style_23-2147942037.jpg?_wi=1",
|
||||
imageAlt: "David Chen",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Emma Wilson",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-professional-businesswoman-looking-upper-left-corner-with-hopeful-face-expression-standing-white_176420-41313.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-professional-businesswoman-looking-upper-left-corner-with-hopeful-face-expression-standing-white_176420-41313.jpg?_wi=1",
|
||||
imageAlt: "Emma Wilson",
|
||||
},
|
||||
]}
|
||||
@@ -271,21 +271,21 @@ export default function HomePage() {
|
||||
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=1",
|
||||
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=1",
|
||||
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=1",
|
||||
imageAlt: "Karim Khan",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -46,37 +46,37 @@ export default function ReviewsPage() {
|
||||
{
|
||||
id: "1",
|
||||
name: "J Jones",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-talking-mobile-phone-waiting-area_107420-95801.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-talking-mobile-phone-waiting-area_107420-95801.jpg?_wi=2",
|
||||
imageAlt: "J Jones",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Zobair Hussain",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/horizontal-shot-beautiful-confident-young-african-american-woman-dressed-stylish-purple-turtleneck-smiling-joyfully-showing-ok-gesture_344912-1015.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/horizontal-shot-beautiful-confident-young-african-american-woman-dressed-stylish-purple-turtleneck-smiling-joyfully-showing-ok-gesture_344912-1015.jpg?_wi=2",
|
||||
imageAlt: "Zobair Hussain",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "PAULPABLO PABLO",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-young-man-stylish-hat-relaxing-alone-cozy-cafeteria-lunch-break-looking-with-happy-expression_273609-1935.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-young-man-stylish-hat-relaxing-alone-cozy-cafeteria-lunch-break-looking-with-happy-expression_273609-1935.jpg?_wi=2",
|
||||
imageAlt: "PAULPABLO PABLO",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Sarah Mitchell",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-mature-businessman-showing-thumb-up_1262-3024.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-mature-businessman-showing-thumb-up_1262-3024.jpg?_wi=2",
|
||||
imageAlt: "Sarah Mitchell",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "David Chen",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/customer-satisfaction-concept-flat-style_23-2147942037.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/customer-satisfaction-concept-flat-style_23-2147942037.jpg?_wi=2",
|
||||
imageAlt: "David Chen",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Emma Wilson",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-professional-businesswoman-looking-upper-left-corner-with-hopeful-face-expression-standing-white_176420-41313.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-professional-businesswoman-looking-upper-left-corner-with-hopeful-face-expression-standing-white_176420-41313.jpg?_wi=2",
|
||||
imageAlt: "Emma Wilson",
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -54,11 +54,11 @@ export default function ServicesPage() {
|
||||
title: "Mini Valet Service",
|
||||
description: "Our entry-level service perfect for regular maintenance. Takes 30-40 minutes and includes exterior wash, tyre cleaning, and window polishing. Keeps your car looking fresh and presentable. Starting at £15-£20.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-car-care-process_23-2149193143.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-car-care-process_23-2149193143.jpg?_wi=2",
|
||||
imageAlt: "Mini valet service",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/car-wash-detailing-station_1303-22299.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/car-wash-detailing-station_1303-22299.jpg?_wi=2",
|
||||
imageAlt: "Professional exterior washing",
|
||||
},
|
||||
},
|
||||
@@ -67,11 +67,11 @@ export default function ServicesPage() {
|
||||
title: "Full Valet Service",
|
||||
description: "Our premium comprehensive service taking 90+ minutes. Includes complete interior and exterior cleaning, deep carpet vacuum, dashboard detailing, engine bay wash, and professional polish with wax finish. Perfect for special occasions or quarterly deep cleans. £45-£65.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-cleaning-tools_23-2150552297.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-cleaning-tools_23-2150552297.jpg?_wi=2",
|
||||
imageAlt: "Full valet cleaning supplies",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-blue-uniform-checks-car_1157-31515.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-blue-uniform-checks-car_1157-31515.jpg?_wi=3",
|
||||
imageAlt: "Professional interior detailing",
|
||||
},
|
||||
},
|
||||
@@ -80,11 +80,11 @@ export default function ServicesPage() {
|
||||
title: "Interior Deep Clean",
|
||||
description: "Focused on revitalizing your car's interior. 45-60 minutes of meticulous work including carpet deep vacuum, seat cleaning, dashboard and trim wipe-down, air freshening treatment, and upholstery protection. Makes your car feel brand new inside. £20-£35.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-blue-uniform-checks-car_1157-31515.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-man-blue-uniform-checks-car_1157-31515.jpg?_wi=4",
|
||||
imageAlt: "Interior vacuum and cleaning",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-smiling-while-examining-car-engine-with-lamp_1170-1292.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mechanic-smiling-while-examining-car-engine-with-lamp_1170-1292.jpg?_wi=2",
|
||||
imageAlt: "Detailed maintenance work",
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user