From 2a49b9305d6748d02aef8db82fe066a5d6ba8193 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 20:09:41 +0000 Subject: [PATCH 1/4] Update src/app/gallery/page.tsx --- src/app/gallery/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index 651d642..c9b84af 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -95,7 +95,7 @@ export default function GalleryPage() { price: "Hair Services", variant: "Color & Style", imageSrc: - "http://img.b2bpic.net/free-photo/close-up-portrait-young-female_1301-1121.jpg", + "http://img.b2bpic.net/free-photo/close-up-portrait-young-female_1301-1121.jpg?_wi=3", imageAlt: "Hair transformation", }, { @@ -104,7 +104,7 @@ export default function GalleryPage() { price: "Makeup", variant: "Bride Glow", imageSrc: - "http://img.b2bpic.net/free-photo/portrait-lovely-glamorous-lady_23-2148398559.jpg", + "http://img.b2bpic.net/free-photo/portrait-lovely-glamorous-lady_23-2148398559.jpg?_wi=3", imageAlt: "Makeup transformation", }, { @@ -113,7 +113,7 @@ export default function GalleryPage() { price: "Ambiance", variant: "Premium Space", imageSrc: - "http://img.b2bpic.net/free-photo/pregnant-woman-applies-makeup-home-front-mirror_169016-27953.jpg", + "http://img.b2bpic.net/free-photo/pregnant-woman-applies-makeup-home-front-mirror_169016-27953.jpg?_wi=3", imageAlt: "Salon interior", }, { @@ -122,7 +122,7 @@ export default function GalleryPage() { price: "Hair Services", variant: "Style & Cut", imageSrc: - "http://img.b2bpic.net/free-photo/woman-with-creative-coloured-hair-pink-makeup_633478-2244.jpg", + "http://img.b2bpic.net/free-photo/woman-with-creative-coloured-hair-pink-makeup_633478-2244.jpg?_wi=3", imageAlt: "Hair styling result", }, ]} -- 2.49.1 From 387406f5f0a60b268721b8f5d4ab91f14e73d8d1 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Mar 2026 20:09:42 +0000 Subject: [PATCH 2/4] Update src/app/layout.tsx --- src/app/layout.tsx | 54 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 46 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2ed8420..c194300 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,60 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Manrope } 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 { Manrope } 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 manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Lavish Salon Karachi - Premium Hair & Beauty Services", + description: "Expert hair, makeup, and grooming salon in Korangi, Karachi. Bridal makeup, hair treatments, facials, men's grooming. 10+ years, 4.6★ rating. Book now!", + keywords: "salon Karachi, bridal makeup Karachi, hair salon Korangi, beauty salon, men's grooming, haircut Karachi, makeup artist, keratin treatment", + metadataBase: new URL("https://lavishsalon.pk"), + alternates: { + canonical: "https://lavishsalon.pk", + }, + openGraph: { + title: "Lavish Men's & Women Salon - Premium Beauty in Karachi", + description: "Experience luxury beauty and grooming. Expert stylists, premium services, 10+ years experience. Book your appointment today!", + siteName: "Lavish Salon Karachi", + type: "website", + images: [ + { + url: "https://lavishsalon.pk/og-image.jpg", + alt: "Lavish Salon Karachi", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Lavish Salon - Premium Beauty & Grooming", + description: "Expert salon services in Karachi. Bridal makeup, hair treatments, grooming. 4.6★ rated, 1000+ clients", + images: ["https://lavishsalon.pk/twitter-image.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +63,9 @@ export default function RootLayout({ return ( - + {children}