diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 43d7e56..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,2809 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Open_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 openSans = Open_Sans({ - variable: "--font-open-sans", - subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Homeopathy Doctor in Dahisar - Dr. V. M. Gokalgandhi | 30+ Years", - description: "Trusted homeopathy clinic in Dahisar West, Mumbai. Dr. V. M. Gokalgandhi offers safe, natural treatment for hair loss, skin diseases, allergies, migraines & more. 30+ years experience.", - keywords: "homeopathy doctor Dahisar, homeopathy clinic Dahisar West, hair loss treatment Mumbai, skin disease homeopathy, allergy treatment, migraine homeopathy", - metadataBase: new URL("https://www.drgokalgandhi.com"), - alternates: { - canonical: "https://www.drgokalgandhi.com", - }, - openGraph: { - title: "Premium Homeopathy Treatment in Dahisar - Dr. Gokalgandhi", - description: "Natural homeopathic treatment by experienced physician Dr. V. M. Gokalgandhi. 30+ years of trusted care for chronic diseases.", - url: "https://www.drgokalgandhi.com", - siteName: "Dr. Gokalgandhi Homeopathy Clinic", - type: "website", - images: [ - { - url: "https://www.drgokalgandhi.com/og-image.jpg", - alt: "Dr. Gokalgandhi Homeopathy Clinic", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Homeopathy Doctor in Dahisar - Dr. Gokalgandhi", - description: "Natural, safe homeopathic treatment for chronic diseases. 30+ years experience.", - images: ["https://www.drgokalgandhi.com/twitter-image.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -