From b90ca87a439ab250f579e3e0598d055591221672 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 02:10:32 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 69 +++++----------------------------------------- 1 file changed, 7 insertions(+), 62 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 641ae53..d8ed5a4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,74 +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 "./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 inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Apollo Clinic - Multi-Specialty Medical Clinic in Srinagar", - description: "Trusted multi-specialty clinic in Srinagar offering expert doctors, modern diagnostics, and compassionate healthcare. 4.4★ rated. Book appointments online.", - keywords: "clinic in Srinagar, best clinic Srinagar, general physician, pediatrician, cardiology, diagnostic lab, physiotherapy, medical services", - metadataBase: new URL("https://apolloclinicsrinagar.com"), - alternates: { - canonical: "https://apolloclinicsrinagar.com", - }, - openGraph: { - title: "Apollo Clinic - Multi-Specialty Medical Care in Srinagar", - description: "Expert healthcare with modern diagnostics. Trusted by 78+ verified patients. Book your appointment today.", - url: "https://apolloclinicsrinagar.com", - siteName: "Apollo Clinic", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/indian-healthcare-professional-sharing-medical-expertise-with-patient-office_482257-124044.jpg", - alt: "Apollo Clinic Modern Healthcare Facility", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Apollo Clinic - Srinagar's Trusted Medical Provider", - description: "Multi-specialty healthcare with expert doctors and AI-powered diagnostics.", - images: ["http://img.b2bpic.net/free-photo/indian-healthcare-professional-sharing-medical-expertise-with-patient-office_482257-124044.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Apollo Clinic - Trusted Multi-Specialty Healthcare in Srinagar", description: "Expert doctors, modern diagnostics, and compassionate care for your entire family. Professional healthcare services with AI-powered diagnostic labs."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}