|
|
|
@@ -1,54 +1,20 @@
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
import { Halant } from "next/font/google";
|
|
|
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
import { Manrope } from "next/font/google";
|
|
|
|
|
|
|
|
import "./globals.css";
|
|
|
|
import "./globals.css";
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const halant = Halant({
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
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"],
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
title: "Best Dentist in Haldwani | Roshan Dental Clinic", description: "Roshan Dental Clinic offers advanced dental care in Haldwani including root canal treatment, cosmetic dentistry, and affordable dental services. Book your appointment today.", keywords: "dentist Haldwani, dental clinic, root canal treatment, cosmetic dentistry, teeth whitening, dental care", robots: {
|
|
|
|
title: "Roshan Dental Clinic | Premium Dental Care in Haldwani", description: "Advanced dental treatments with compassionate care and affordable solutions. Experience exceptional dental care at Roshan Dental Clinic."};
|
|
|
|
index: true,
|
|
|
|
|
|
|
|
follow: true,
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
openGraph: {
|
|
|
|
|
|
|
|
title: "Roshan Dental Clinic - Premium Dental Care in Haldwani", description: "Advanced dental treatments with compassionate care. Book your appointment at Haldwani's trusted dental clinic.", type: "website", siteName: "Roshan Dental Clinic", images: [
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
url: "http://img.b2bpic.net/free-photo/no-people-empty-waiting-area-clinical-center-with-reception-desk-waiting-room-with-seats-start-checkup-visit-appointment-medical-examination-with-doctor-hospital-lobby_482257-46239.jpg", alt: "Roshan Dental Clinic - Modern Dental Practice"},
|
|
|
|
|
|
|
|
],
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
twitter: {
|
|
|
|
|
|
|
|
card: "summary_large_image", title: "Roshan Dental Clinic - Best Dentist in Haldwani", description: "Experience premium dental care with advanced treatments and compassionate service. Trust Roshan Dental Clinic.", images: ["http://img.b2bpic.net/free-photo/no-people-empty-waiting-area-clinical-center-with-reception-desk-waiting-room-with-seats-start-checkup-visit-appointment-medical-examination-with-doctor-hospital-lobby_482257-46239.jpg"],
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
export default function RootLayout({
|
|
|
|
children,
|
|
|
|
children,
|
|
|
|
}: Readonly<{
|
|
|
|
}: {
|
|
|
|
children: React.ReactNode;
|
|
|
|
children: React.ReactNode;
|
|
|
|
}>) {
|
|
|
|
}) {
|
|
|
|
return (
|
|
|
|
return (
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
<html lang="en">
|
|
|
|
<ServiceWrapper>
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
<body
|
|
|
|
|
|
|
|
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
|
|
|
|
|
|
|
|
>
|
|
|
|
|
|
|
|
<Tag />
|
|
|
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script
|
|
|
|
<script
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
__html: `
|
|
|
|
__html: `
|
|
|
|
@@ -1416,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
}}
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
</body>
|
|
|
|
</body>
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
|
|
|
</html>
|
|
|
|
</html>
|
|
|
|
);
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|