|
|
|
|
@@ -1,63 +1,20 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Halant } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import { Figtree } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
import "@/styles/globals.css";
|
|
|
|
|
|
|
|
|
|
const halant = Halant({
|
|
|
|
|
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"],
|
|
|
|
|
});
|
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Rose Clinic 24/7 Appointment Booking - Ultrasound & OBGY Services",
|
|
|
|
|
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"]
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
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."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1425,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|