Merge version_3 into main #2

Merged
bender merged 2 commits from version_3 into main 2026-03-10 09:09:02 +00:00
2 changed files with 9 additions and 43 deletions

View File

@@ -1,54 +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: "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: {
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"],
},
};
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."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -63,7 +63,8 @@ export default function LandingPage() {
<InlineImageSplitTextAbout
heading={[
{ type: "text", content: "About" },
{ type: "text", content: "Roshan Dental Clinic" },
{ type: "text", content: "Roshan Dental" },
{ type: "text", content: "Premium Care Since 2010" },
]}
useInvertedBackground={false}
buttons={[{ text: "Learn More", href: "#services" }]}
@@ -193,4 +194,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}