diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 5262dae..36eda07 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-
-
-
- {children}
-
+
+ {children}
-
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 49a7624..eb045e4 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -64,7 +64,7 @@ const HomePage = () => {
{
);
};
-export default HomePage;
\ No newline at end of file
+export default HomePage;