From c8fc7d36b78d639d871ff0afb1819bdf0dc075d2 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 23:07:50 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 39c5504..3cb88af 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -47,7 +47,7 @@ export default function AboutPage() { description="Quality Craftsmanship" subdescription="20+ Years of Experience" icon={Star} - imageSrc="http://img.b2bpic.net/free-photo/side-view-young-female-designer-working-sewing-machine_23-2147874998.jpg" + imageSrc="http://img.b2bpic.net/free-photo/side-view-young-female-designer-working-sewing-machine_23-2147874998.jpg?_wi=2" imageAlt="professional tailor expertise craftsmanship" mediaAnimation="slide-up" useInvertedBackground={false} @@ -66,21 +66,21 @@ export default function AboutPage() { id: "1", name: "Sarah Mitchell", imageSrc: - "http://img.b2bpic.net/free-photo/expressive-young-woman-posing_344912-2424.jpg", + "http://img.b2bpic.net/free-photo/expressive-young-woman-posing_344912-2424.jpg?_wi=2", imageAlt: "professional woman portrait headshot", }, { id: "2", name: "James Chen", imageSrc: - "http://img.b2bpic.net/free-photo/portrait-successful-young-businessman-with-his-arms-crossed-looking-camera_23-2148176207.jpg", + "http://img.b2bpic.net/free-photo/portrait-successful-young-businessman-with-his-arms-crossed-looking-camera_23-2148176207.jpg?_wi=2", imageAlt: "professional man portrait headshot", }, { id: "3", name: "Emma Williams", imageSrc: - "http://img.b2bpic.net/free-photo/portrait-young-business-woman-standing-bu-office-building_1303-31732.jpg", + "http://img.b2bpic.net/free-photo/portrait-young-business-woman-standing-bu-office-building_1303-31732.jpg?_wi=2", imageAlt: "professional woman portrait headshot", }, ]} -- 2.49.1 From 7d7ff9a2fd54a0e3d4a8c56bc3ad8a9634624709 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 23:07:51 +0000 Subject: [PATCH 2/4] Update src/app/layout.tsx --- src/app/layout.tsx | 59 ++++++++++++++++++++++++++++++++++++---------- 1 file changed, 47 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a02c995..da9173e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,60 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Mulish } 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 { Mulish } 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 mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "Tailor's Touch - Professional Tailoring & Clothing Alterations", + description: "Expert tailoring and clothing alterations in your area. Suit tailoring, dress alterations, wedding dress fitting, hemming, zipper repair, and emergency same-day service. Book your appointment today.", + keywords: "tailoring near me, clothing alterations, suit tailoring, dress alterations, wedding dress alterations, pants hemming, local tailor, professional alterations", + metadataBase: new URL("https://tailorstouch.local"), + alternates: { + canonical: "https://tailorstouch.local", + }, + openGraph: { + title: "Tailor's Touch - Professional Tailoring & Alterations", + description: "Expert tailoring and clothing alterations for suits, dresses, formalwear, and everyday clothing. Perfect fit guaranteed.", + url: "https://tailorstouch.local", + siteName: "Tailor's Touch Tailoring & Alterations", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/side-view-woman-cutting-fabric_23-2148827137.jpg", + alt: "Professional tailor working on clothing alterations", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Tailor's Touch - Perfect Fit Every Time", + description: "Professional tailoring and alterations for all occasions.", + images: ["http://img.b2bpic.net/free-photo/side-view-woman-cutting-fabric_23-2148827137.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; export default function RootLayout({ children, @@ -31,7 +64,9 @@ export default function RootLayout({ return ( - + {children}