Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| bad02d27ac | |||
| e7a5cc1471 | |||
| 4778a11740 | |||
| c0e9cfcb4b | |||
| 7f38dd1653 |
@@ -1,63 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Figtree } from "next/font/google";
|
import "@/styles/globals.css";
|
||||||
import "./globals.css";
|
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-halant",
|
|
||||||
subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const figtree = Figtree({
|
|
||||||
variable: "--font-figtree",
|
|
||||||
subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Rose Clinic 24/7 Appointment Booking - Ultrasound & OBGY Services",
|
title: "Rose Clinic & Ultrasound Centre - 24/7 Online Appointment Booking", description: "Book appointments online at Rose Clinic & Ultrasound Centre. Real-time availability, smart reminders, and secure scheduling for Dr. Nisha Singh's premier healthcare facility."};
|
||||||
description: "Book appointments online at Rose Clinic & Ultrasound Centre in Delhi. 24/7 OBGY services by Dr. Nisha Singh. Real-time slot availability, reminders, and comprehensive patient management system.",
|
|
||||||
keywords: "clinic appointment booking, ultrasound center Delhi, OBGY services, Dr. Nisha Singh, online appointment system, healthcare management",
|
|
||||||
openGraph: {
|
|
||||||
title: "Rose Clinic - 24/7 Appointment Booking System",
|
|
||||||
description: "Seamless online appointment scheduling for Rose Clinic & Ultrasound Centre. Book with Dr. Nisha Singh. Real-time availability and instant confirmations.",
|
|
||||||
siteName: "Rose Clinic",
|
|
||||||
type: "website",
|
|
||||||
images: [{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/medical-treatment-calendar-with-stethoscope-pills_23-2148438970.jpg",
|
|
||||||
alt: "Rose Clinic Appointment Booking System"
|
|
||||||
}]
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image",
|
|
||||||
title: "Rose Clinic - Book Your Appointment Online",
|
|
||||||
description: "24/7 OBGY and ultrasound services by Dr. Nisha Singh. Easy online appointment booking with instant confirmations.",
|
|
||||||
images: ["http://img.b2bpic.net/free-photo/medical-treatment-calendar-with-stethoscope-pills_23-2148438970.jpg"]
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1425,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -64,7 +64,7 @@ const HomePage = () => {
|
|||||||
<FeatureCardTwentySix
|
<FeatureCardTwentySix
|
||||||
title="Powerful Features for Patients"
|
title="Powerful Features for Patients"
|
||||||
description="Everything you need for hassle-free healthcare appointments and management"
|
description="Everything you need for hassle-free healthcare appointments and management"
|
||||||
tag="Patient Portal"
|
tag="Trusted by 5000+ Patients"
|
||||||
tagIcon={CheckCircle}
|
tagIcon={CheckCircle}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
features={[
|
features={[
|
||||||
@@ -233,4 +233,4 @@ const HomePage = () => {
|
|||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export default HomePage;
|
export default HomePage;
|
||||||
|
|||||||
Reference in New Issue
Block a user