diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index ff6e072..71ee317 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -63,7 +63,7 @@ export default function AboutPage() { } ]} buttonAnimation="slide-up" - imageSrc="http://img.b2bpic.net/free-photo/abstract-blur-hospital-clinic-interior_1203-7891.jpg" + imageSrc="http://img.b2bpic.net/free-photo/abstract-blur-hospital-clinic-interior_1203-7891.jpg?_wi=2" imageAlt="Medical clinic environment" mediaAnimation="slide-up" /> diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 64dcb13..c4a1035 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -57,7 +57,7 @@ export default function ContactPage() { title="Schedule Your Appointment" description="Get in touch with our medical team to book your consultation and begin your healthcare journey with us." useInvertedBackground={true} - imageSrc="http://img.b2bpic.net/free-photo/abstract-blur-hospital-clinic-interior_1203-7891.jpg" + imageSrc="http://img.b2bpic.net/free-photo/abstract-blur-hospital-clinic-interior_1203-7891.jpg?_wi=4" imageAlt="Medical clinic" mediaAnimation="slide-up" mediaPosition="right" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7eeade6..b94a641 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Poppins } 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 { Poppins } 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 poppins = Poppins({ variable: "--font-poppins", @@ -20,6 +24,22 @@ const poppins = Poppins({ weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); +export const metadata: Metadata = { + title: "Medical Professional Portfolio | Expert Healthcare Services", + description: "Professional medical practice offering comprehensive healthcare, surgical procedures, and rehabilitation therapy with experienced physicians and compassionate patient care.", + keywords: "medical practice, healthcare services, physicians, surgery, rehabilitation, patient care, medical consultation", + openGraph: { + title: "Dr. Medical Care - Professional Medical Services", + description: "Comprehensive healthcare services by experienced medical professionals dedicated to patient wellness and recovery.", + siteName: "Dr. Medical Care", + type: "website", + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +48,9 @@ export default function RootLayout({ return ( - + {children}