81 lines
2.6 KiB
TypeScript
81 lines
2.6 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Halant } from "next/font/google";
|
|
import { Inter } from "next/font/google";
|
|
import { Nunito } from "next/font/google";
|
|
import "./globals.css";
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
import Tag from "@/tag/Tag";
|
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
|
|
|
const halant = Halant({
|
|
variable: "--font-halant",
|
|
subsets: ["latin"],
|
|
weight: ["300", "400", "500", "600", "700"],
|
|
});
|
|
|
|
const inter = Inter({
|
|
variable: "--font-inter",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
const nunito = Nunito({
|
|
variable: "--font-nunito",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Subasri Siddha Speciality Centre - Natural Siddha Treatment Tamil Nadu",
|
|
description: "Trusted Siddha medical clinic in Ayakkaranpulam offering natural treatment for psoriasis, joint pain, women's health & chronic diseases. 5-star rated. Call 09488 101203.",
|
|
keywords: "Siddha doctor near me, Siddha treatment Tamil Nadu, psoriasis natural treatment, joint pain relief, women's health Siddha, natural medicine clinic Ayakkaranpulam",
|
|
metadataBase: new URL("https://subasrisiddha.com"),
|
|
alternates: {
|
|
canonical: "https://subasrisiddha.com",
|
|
},
|
|
openGraph: {
|
|
title: "Subasri Siddha Speciality Centre - Natural Healing",
|
|
description: "Experience authentic Siddha treatment with experienced doctors. Natural, side-effect-free care for skin, joints, women's health & more.",
|
|
url: "https://subasrisiddha.com",
|
|
siteName: "Subasri Siddha Speciality Centre",
|
|
type: "website",
|
|
images: [
|
|
{
|
|
url: "http://img.b2bpic.net/free-photo/beautiful-composition-spa-bath-concept_23-2148094287.jpg",
|
|
alt: "Subasri Siddha Speciality Centre",
|
|
},
|
|
],
|
|
},
|
|
twitter: {
|
|
card: "summary_large_image",
|
|
title: "Subasri Siddha Speciality Centre",
|
|
description: "Natural Siddha treatment for skin, joint pain, women's health & chronic diseases in Tamil Nadu",
|
|
images: ["http://img.b2bpic.net/free-photo/beautiful-composition-spa-bath-concept_23-2148094287.jpg"],
|
|
},
|
|
robots: {
|
|
index: true,
|
|
follow: true,
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body
|
|
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
|
|
>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
} |