Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -48,7 +48,7 @@ export default function AppointmentPage() {
|
||||
variant: "plain"
|
||||
}}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/social-worker-taking-care-old-woman_23-2149031323.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/social-worker-taking-care-old-woman_23-2149031323.jpg?_wi=2"
|
||||
imageAlt="doctor patient consultation room modern clinic"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
@@ -65,7 +65,7 @@ export default function AppointmentPage() {
|
||||
description="Find answers to common questions about booking appointments, emergency services, and visiting policies."
|
||||
tagIcon={HelpCircle}
|
||||
tagAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/doctor-talking-patient-while-holding-tablet_23-2148285669.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/doctor-talking-patient-while-holding-tablet_23-2148285669.jpg?_wi=1"
|
||||
imageAlt="healthcare professionals team helping patients"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -51,7 +51,7 @@ const ContactPage = () => {
|
||||
{ text: "Email Us", href: "mailto:info@holycityhospital.com" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/medical-assistant-examines-patient-back-muscles-with-physical-touch-technique_482257-122748.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/medical-assistant-examines-patient-back-muscles-with-physical-touch-technique_482257-122748.jpg?_wi=2"
|
||||
imageAlt="Holy City Hospital contact information"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
@@ -83,7 +83,7 @@ const ContactPage = () => {
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/social-worker-taking-care-old-woman_23-2149031323.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/social-worker-taking-care-old-woman_23-2149031323.jpg?_wi=3"
|
||||
imageAlt="Medical professional providing patient support"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
@@ -101,7 +101,7 @@ const ContactPage = () => {
|
||||
description="Find answers to common questions about reaching us, appointment scheduling, and emergency procedures."
|
||||
tagIcon={HelpCircle}
|
||||
tagAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/doctor-talking-patient-while-holding-tablet_23-2148285669.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/doctor-talking-patient-while-holding-tablet_23-2148285669.jpg?_wi=2"
|
||||
imageAlt="Healthcare professionals answering patient questions"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
@@ -1,24 +1,56 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Nunito_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 { Nunito_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 nunitoSans = Nunito_Sans({
|
||||
variable: "--font-nunito-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Holy City Hospital and Trauma Centre - Expert Healthcare Services",
|
||||
description: "Leading healthcare provider in Varanasi offering emergency trauma care, specialist consultations, and modern medical facilities. Book appointments online or call 05422586626.",
|
||||
keywords: "hospital, trauma centre, healthcare, emergency care, doctors, appointments, Varanasi, medical facilities",
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Holy City Hospital and Trauma Centre",
|
||||
description: "Professional healthcare services with modern facilities and experienced medical team. Available 24/7.",
|
||||
type: "website",
|
||||
siteName: "Holy City Hospital and Trauma Centre",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/medical-assistant-examines-patient-back-muscles-with-physical-touch-technique_482257-122748.jpg",
|
||||
alt: "Holy City Hospital",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Holy City Hospital and Trauma Centre",
|
||||
description: "Expert healthcare services with 24/7 emergency trauma care.",
|
||||
images: ["http://img.b2bpic.net/free-photo/medical-assistant-examines-patient-back-muscles-with-physical-touch-technique_482257-122748.jpg"],
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -27,7 +59,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${nunitoSans.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
|
||||
@@ -56,7 +56,7 @@ export default function HomePage() {
|
||||
{ text: "Emergency: 05422586626", href: "tel:05422586626" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/medical-assistant-examines-patient-back-muscles-with-physical-touch-technique_482257-122748.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/medical-assistant-examines-patient-back-muscles-with-physical-touch-technique_482257-122748.jpg?_wi=1"
|
||||
imageAlt="Holy City Hospital entrance and medical facility"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
@@ -226,7 +226,7 @@ export default function HomePage() {
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/social-worker-taking-care-old-woman_23-2149031323.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/social-worker-taking-care-old-woman_23-2149031323.jpg?_wi=1"
|
||||
imageAlt="Medical professional and patient consultation"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
|
||||
Reference in New Issue
Block a user