From f1729a17d3b67fbfdfd4cb5276eb8b431f9b0735 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 03:45:22 +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 90591ea..19fd5f5 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -87,7 +87,7 @@ export default function AboutPage() { tag="Dr. Sakina's Background" tagIcon={Award} tagAnimation="slide-up" - imageSrc="http://img.b2bpic.net/free-photo/portrait-young-beautiful-female-doctor-happily-looking-camera-smiling-white-background_574295-2641.jpg" + imageSrc="http://img.b2bpic.net/free-photo/portrait-young-beautiful-female-doctor-happily-looking-camera-smiling-white-background_574295-2641.jpg?_wi=2" imageAlt="Dr. Sakina professional portrait" mediaAnimation="slide-up" metrics={[ From bdc5ca78bfcf4c02d0ef2ffd7afc1802402105a1 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 03:45:22 +0000 Subject: [PATCH 2/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index ba2d547..ad20b1f 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -99,7 +99,7 @@ export default function ContactPage() { }, ]} buttonAnimation="slide-up" - imageSrc="http://img.b2bpic.net/free-vector/minimalist-location-app-template_23-2148690536.jpg" + imageSrc="http://img.b2bpic.net/free-vector/minimalist-location-app-template_23-2148690536.jpg?_wi=2" imageAlt="Dr. Sakina Clinics location in Wah Cantt" mediaAnimation="slide-up" avatars={[ @@ -143,7 +143,7 @@ export default function ContactPage() { required: true, }} useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-vector/minimalist-location-app-template_23-2148690536.jpg" + imageSrc="http://img.b2bpic.net/free-vector/minimalist-location-app-template_23-2148690536.jpg?_wi=3" imageAlt="Dr. Sakina Clinics location map - Wah Cantt" mediaAnimation="slide-up" mediaPosition="right" From bafa559418da601d67818c041aa037acaf4ed45e Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 03:45:23 +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 2ed8420..f79c0f8 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 { 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: "Dr. Sakina Clinics | Dermatologist Wah Cantt 4.6★", + description: "Professional dermatology clinic in Wah Cantt offering acne treatment, hair loss solutions, and skin care. Call +92 312 5458615 to book.", + keywords: "dermatologist wah cantt, skin clinic, acne treatment, hair loss, wah cantt dermatology", + metadataBase: new URL("https://drsakinaclinics.com"), + alternates: { + canonical: "https://drsakinaclinics.com", + }, + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Dr. Sakina Clinics | Expert Dermatology Care", + description: "Trusted dermatology clinic in Wah Cantt with 4.6★ rating. Expert treatments for acne, hair loss, and skin concerns.", + url: "https://drsakinaclinics.com", + siteName: "Dr. Sakina Clinics", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-vector/hospital-template-design_23-2150363212.jpg", + alt: "Dr. Sakina Clinics professional entrance", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Dr. Sakina Clinics | Expert Dermatology", + description: "Trusted skin and hair care clinic in Wah Cantt. 4.6★ rated. Call +92 312 5458615", + images: ["http://img.b2bpic.net/free-vector/hospital-template-design_23-2150363212.jpg"], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}