From e7a5cc147158343e1bdaadd891c924d713b5d2a7 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 05:41:55 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 60 +++++++--------------------------------------- 1 file changed, 8 insertions(+), 52 deletions(-) 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}