From 905780950bb55ca6097ab40d019cfaa47b612ea0 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Mar 2026 10:25:25 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index ca0ac19..fa3581b 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -95,7 +95,7 @@ export default function AboutPage() { useInvertedBackground={false} mediaAnimation="slide-up" metricsAnimation="slide-up" - imageSrc="http://img.b2bpic.net/free-photo/group-happy-business-colleagues-holding-hands-unity-after-successful-job-there-are-people-background_637285-177.jpg" + imageSrc="http://img.b2bpic.net/free-photo/group-happy-business-colleagues-holding-hands-unity-after-successful-job-there-are-people-background_637285-177.jpg?_wi=2" imageAlt="professional medical team clinic consultation" /> @@ -113,7 +113,7 @@ export default function AboutPage() { { title: "Evidence-Based Protocols", description: "Each IV therapy protocol is designed using the latest medical research and international best practices. Our medical team continuously updates treatments based on emerging wellness science.", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-doctor-holding-syringe-vial_23-2149551123.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/close-up-doctor-holding-syringe-vial_23-2149551123.jpg?_wi=4", imageAlt: "Energy Optimization IV therapy", }, { @@ -125,7 +125,7 @@ export default function AboutPage() { { title: "Premium Facility Experience", description: "Every visit to VitaTherapy is designed for comfort and relaxation. Our luxury facility features private treatment rooms, therapeutic ambiance, and concierge service for a truly premium wellness experience.", - imageSrc: "http://img.b2bpic.net/free-photo/electromagnetic-therapy-back-physiotherapist-doctor-uses-medical-equipment_169016-40224.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/electromagnetic-therapy-back-physiotherapist-doctor-uses-medical-equipment_169016-40224.jpg?_wi=3", imageAlt: "Athletic Recovery therapy", }, ]} -- 2.49.1 From 4a04a471a509829e03e0fc0dfc22429c29b2915b Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Mar 2026 10:25:26 +0000 Subject: [PATCH 2/4] 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 32671a1..9aa5a50 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 { Open_Sans } 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 { Open_Sans } 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 openSans = Open_Sans({ variable: "--font-open-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "VitaTherapy - Premium IV Therapy & Wellness Clinic in Jordan", + description: "Experience the future of wellness with VitaTherapy. Advanced IV therapy for energy, immunity, and vitality delivered by internationally-trained medical professionals in luxury setting.", + keywords: "IV therapy Jordan, wellness clinic Amman, IV infusion therapy, premium health treatments, medical wellness, holistic therapy, energy optimization, immunity boost", + metadataBase: new URL("https://vitatherapy.jo"), + alternates: { + canonical: "https://vitatherapy.jo", + }, + openGraph: { + title: "VitaTherapy - Experience the Future of Wellness in Jordan", + description: "Advanced IV therapy for energy, immunity, and vitality. Medical-grade treatments in a luxury healing environment.", + url: "https://vitatherapy.jo", + siteName: "VitaTherapy", + type: "website", + images: [ + { + url: "https://vitatherapy.jo/og-image.jpg", + alt: "VitaTherapy Premium Wellness Clinic", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "VitaTherapy - Premium IV Therapy in Jordan", + description: "Experience the future of wellness. Advanced IV therapy delivered by internationally-trained medical professionals.", + images: ["https://vitatherapy.jo/twitter-image.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}