From 44c1dd08ea6172579fa2afe513c1df5fecd4ae23 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 08:56:41 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1416 +------------------------------------------- 1 file changed, 6 insertions(+), 1410 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 75a7cc6..3730cdd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1423 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; -import { DM_Sans } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Srijan Hospital - 24/7 Healthcare in Jaipur", description: "Srijan Hospital offers comprehensive healthcare services in Jaipur. 24-hour emergency care, expert doctors, modern facilities. Call 090247 32129 now.", keywords: "hospital, healthcare, Jaipur, emergency, medical services, doctors, surgery, diagnostics", openGraph: { - title: "Srijan Hospital - Quality Healthcare Services", description: "Experience trusted medical care at Srijan Hospital in Jaipur. Available 24/7 for all your healthcare needs.", type: "website", siteName: "Srijan Hospital" - }, - twitter: { - card: "summary", title: "Srijan Hospital - Healthcare Excellence", description: "24/7 medical services in Jaipur. Expert doctors and modern facilities." - }, - robots: { - index: true, - follow: true - } -}; + title: "Srijan Hospital - Quality Healthcare in Jaipur", description: "Srijan Hospital provides 24/7 comprehensive healthcare services in Jaipur with experienced medical professionals and modern facilities."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -