From 0faa93d334e4f728f3d60f194a88e91605e9a1b3 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 06:55:21 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1419 +------------------------------------------- 1 file changed, 11 insertions(+), 1408 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5f31427..92d884b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1423 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Manrope } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "R N Multispeciality Hospital | Advanced Healthcare in Jaipur", description: "R N Multispeciality Hospital offers comprehensive healthcare with 50+ specialists, 24/7 emergency care, advanced diagnostics, and compassionate medical services in Jaipur.", keywords: "hospital Jaipur, multispeciality hospital, cardiology, neurology, radiology, emergency care, healthcare, medical services", metadataBase: new URL("https://rnhospital.in"), - alternates: { - canonical: "https://rnhospital.in"}, - openGraph: { - title: "R N Multispeciality Hospital | Precision Meets Compassion", description: "Experience advanced healthcare with our team of specialists. Available 24/7 for your health needs.", url: "https://rnhospital.in", siteName: "R N Hospital", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ak81i8vP4EMBR0bh3HcA1mYgak/a-hyper-realistic-3d-floating-glassmorph-1773125064342-dd7d9e6e.png", alt: "R N Hospital - 3D Medical Heart"}, - ], - }, - twitter: { - card: "summary_large_image", title: "R N Multispeciality Hospital | Healthcare Excellence", description: "Comprehensive healthcare services with expert specialists available 24/7 in Jaipur.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ak81i8vP4EMBR0bh3HcA1mYgak/a-hyper-realistic-3d-floating-glassmorph-1773125064342-dd7d9e6e.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -