diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 619caeb..14c11a7 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -83,7 +83,7 @@ export default function AboutPage() { title: "First-Cycle Success Rate", }, ]} - imageSrc="http://img.b2bpic.net/free-photo/biologist-researcher-woman-holding-blood-test-tube-hands-discussing-medical-vaccine_482257-16132.jpg" + imageSrc="http://img.b2bpic.net/free-photo/biologist-researcher-woman-holding-blood-test-tube-hands-discussing-medical-vaccine_482257-16132.jpg?_wi=2" imageAlt="Shreeram IVF advanced fertility laboratory and clinic" useInvertedBackground={false} mediaAnimation="slide-up" @@ -102,19 +102,19 @@ export default function AboutPage() { id: "1", name: "Dr. Shreeram Kumar", role: "Founder & Chief IVF Specialist", - imageSrc: "http://img.b2bpic.net/free-photo/doctor-working-posing_23-2147642737.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/doctor-working-posing_23-2147642737.jpg?_wi=2", }, { id: "2", name: "Dr. Priya Sharma", role: "Reproductive Endocrinologist", - imageSrc: "http://img.b2bpic.net/free-photo/young-woman-doctor-wearing-white-coat-with-stethoscope-blowing-kiss-with-hand-air-being-lovely-standing-pink-wall_141793-47748.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/young-woman-doctor-wearing-white-coat-with-stethoscope-blowing-kiss-with-hand-air-being-lovely-standing-pink-wall_141793-47748.jpg?_wi=2", }, { id: "3", name: "Dr. Rajesh Verma", role: "Embryologist & Lab Director", - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-scientists-lab_23-2148970019.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-scientists-lab_23-2148970019.jpg?_wi=2", }, ]} gridVariant="uniform-all-items-equal" diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 176a2ab..06b89d7 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -111,7 +111,7 @@ export default function ContactPage() { content: "IVF costs vary based on individual treatment plans, medications, and additional services like genetic screening. We offer transparent pricing and flexible payment options. Initial consultation is complimentary to discuss costs and financing options available.", }, ]} - imageSrc="http://img.b2bpic.net/free-photo/porfessional-doctor-using-stamp-documents-giving-prescription-senior-patient-desk-healthcare-office-medic-advising-elder-woman-about-healing-treatment-medicine_482257-38038.jpg" + imageSrc="http://img.b2bpic.net/free-photo/porfessional-doctor-using-stamp-documents-giving-prescription-senior-patient-desk-healthcare-office-medic-advising-elder-woman-about-healing-treatment-medicine_482257-38038.jpg?_wi=2" imageAlt="Patient consultation at Shreeram IVF" mediaAnimation="slide-up" faqsAnimation="slide-up" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index da5b4f2..a18903b 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 { Raleway } 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 { Raleway } 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 raleway = Raleway({ variable: "--font-raleway", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Shreeram IVF Centre - Advanced Fertility & IVF Treatment", + description: "Expert fertility care from experienced reproductive specialists. Shreeram IVF offers advanced IVF treatments, genetic screening, and compassionate support for your journey to parenthood. 98% success rate.", + keywords: "IVF centre, fertility treatment, reproductive specialist, ivf hospital, assisted reproduction, fertility clinic", + metadataBase: new URL("https://shreeram-ivf.com"), + alternates: { + canonical: "https://shreeram-ivf.com", + }, + openGraph: { + title: "Shreeram IVF Centre - Advanced Fertility Solutions", + description: "Leading IVF and fertility treatment centre with expert doctors and 98% success rate.", + url: "https://shreeram-ivf.com", + siteName: "Shreeram IVF Centre", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/biologist-researcher-woman-holding-blood-test-tube-hands-discussing-medical-vaccine_482257-16132.jpg", + alt: "Shreeram IVF Centre modern fertility clinic", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Shreeram IVF Centre - Your Fertility Partner", + description: "Advanced IVF treatment and fertility services from experienced reproductive specialists.", + images: ["http://img.b2bpic.net/free-photo/biologist-researcher-woman-holding-blood-test-tube-hands-discussing-medical-vaccine_482257-16132.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}