From 086156354a892a5595d1e6f0e360acd01ea41c27 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 16:37:38 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index dd249e8..a38e0d6 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -50,7 +50,7 @@ export default function AboutPage() { description="Founded with a passion for excellence, Joyful Professional Cleaners has been London's go-to laundry service for years. We believe that professional care for your clothes should be convenient, affordable, and reliable." subdescription="Our team uses eco-friendly practices and premium techniques to ensure your garments are treated with the utmost care. Whether it's delicate designer pieces or everyday wear, we take pride in every item we handle. Serving all of London with same-day and express services, we're committed to your satisfaction." icon={Sparkles} - imageSrc="http://img.b2bpic.net/free-photo/medium-shot-happy-people-helping_23-2149142777.jpg" + imageSrc="http://img.b2bpic.net/free-photo/medium-shot-happy-people-helping_23-2149142777.jpg?_wi=2" imageAlt="Joyful Professional Cleaners team at work" mediaAnimation="blur-reveal" useInvertedBackground={false} -- 2.49.1 From 1bd0bccb14427423a5b2e099212aa476d7de6607 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Mar 2026 16:37:38 +0000 Subject: [PATCH 2/5] 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 9c6ced4..3f05e63 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -48,7 +48,7 @@ export default function ContactPage() { Date: Sat, 21 Mar 2026 16:37:39 +0000 Subject: [PATCH 3/5] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1bfe997..affbd99 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 { Archivo } 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 { Archivo } 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 archivo = Archivo({ variable: "--font-archivo", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Joyful Professional Cleaners - London's Trusted Dry Cleaning & Laundry Service", + description: "Professional dry cleaning and laundry service in London. Convenient pickup and delivery, same-day express service, and eco-friendly care for all your garments.", + keywords: "dry cleaning London, laundry service London, professional cleaning, express service, pickup delivery", + metadataBase: new URL("https://joyfulcleaners.co.uk"), + alternates: { + canonical: "https://joyfulcleaners.co.uk", + }, + openGraph: { + title: "Joyful Professional Cleaners - London", + description: "London's trusted dry cleaning and laundry experts. Professional care, convenient service, free pickup and delivery.", + url: "https://joyfulcleaners.co.uk", + siteName: "Joyful Professional Cleaners", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/smiling-young-housewife-holding-heap-clothing_1262-5803.jpg", + alt: "Professional laundry service", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Joyful Professional Cleaners - London", + description: "Professional dry cleaning with free pickup and delivery across London.", + images: ["http://img.b2bpic.net/free-photo/smiling-young-housewife-holding-heap-clothing_1262-5803.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}