From 905627bb04275a29bc5026ff7d08905524d948d4 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 05:52:14 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 54 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 48 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f74b502..832f000 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,17 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Poppins } 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 poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +import "@/styles/globals.css"; export const metadata: Metadata = { - title: "Pushpal Hospital | Trusted Healthcare in Sultanpur", description: "Pushpal Hospital in Sultanpur offers compassionate healthcare with experienced doctors, 24/7 emergency care, and comprehensive medical services for your family.", keywords: "hospital Sultanpur, medical care Sultanpur, emergency services, doctors near Sultanpur, healthcare provider", metadataBase: new URL("https://pushpalhospital.com"), - alternates: { - canonical: "https://pushpalhospital.com"}, - openGraph: { - title: "Pushpal Hospital - Trusted Healthcare Provider", description: "Quality healthcare for your family with experienced doctors and modern medical facilities in Sultanpur.", url: "https://pushpalhospital.com", siteName: "Pushpal Hospital", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/general-practitioner-examining-x-ray-scan-test-results-with-patient_482257-124816.jpg", alt: "Pushpal Hospital - Quality Healthcare"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Pushpal Hospital | Trusted Healthcare", description: "24/7 medical care in Sultanpur. Call 098812 14441 for appointments.", images: ["http://img.b2bpic.net/free-photo/general-practitioner-examining-x-ray-scan-test-results-with-patient_482257-124816.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Pushpal Hospital - Trusted Healthcare in Sultanpur", description: "Quality healthcare services for your family with experienced doctors and modern facilities"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}