From f1c5a7df3733a9cfb2cf6af0d380804b20a2b486 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 17:10:01 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1408 +------------------------------------------- 1 file changed, 7 insertions(+), 1401 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f268155..d688bb4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1413 +1,20 @@ 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"; +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 poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Maurya Clinic | Expert Healthcare for Busy Professionals", description: "Get fast, reliable medical care with same-day appointments and free consultations. Expert doctors, modern treatment methods, and zero waiting.", keywords: "clinic, medical care, doctor appointments, healthcare, consultation, fast service, expert doctors", openGraph: { - title: "Maurya Clinic | Expert Healthcare for Busy Professionals", description: "Get fast, reliable medical care with same-day appointments and free consultations.", type: "website", siteName: "Maurya Clinic"}, - twitter: { - card: "summary_large_image", title: "Maurya Clinic | Expert Healthcare for Busy Professionals", description: "Fast medical care, expert doctors, zero waiting. Book your appointment today."}, -}; + title: "Maurya Clinic - Expert Medical Care for Busy Professionals", description: "Skip long waits and get expert medical care with quick appointments. Free consultation calls available. Modern clinic with experienced doctors."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -