Merge version_1 into main #1
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${raleway.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -119,7 +119,7 @@ export default function HomePage() {
|
||||
title: "Combined Medical Experience",
|
||||
},
|
||||
]}
|
||||
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=1"
|
||||
imageAlt="State-of-the-art Shreeram IVF clinic interior"
|
||||
useInvertedBackground={false}
|
||||
mediaAnimation="slide-up"
|
||||
@@ -183,19 +183,19 @@ export default function HomePage() {
|
||||
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=1",
|
||||
},
|
||||
{
|
||||
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=1",
|
||||
},
|
||||
{
|
||||
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=1",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
|
||||
@@ -150,7 +150,7 @@ export default function ServicesPage() {
|
||||
content: "Patient privacy is paramount. We maintain strict confidentiality protocols, secure medical records, and private consultation spaces. All donor programs are anonymous and thoroughly screened. You can trust that your personal journey remains completely confidential.",
|
||||
},
|
||||
]}
|
||||
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=1"
|
||||
imageAlt="Patient consultation at Shreeram IVF"
|
||||
mediaAnimation="slide-up"
|
||||
faqsAnimation="slide-up"
|
||||
|
||||
Reference in New Issue
Block a user