4 Commits

Author SHA1 Message Date
4620f1ab0a Update src/app/page.tsx 2026-03-10 09:08:58 +00:00
30edfddc21 Update src/app/layout.tsx 2026-03-10 09:08:57 +00:00
f841f72d98 Merge version_2 into main
Merge version_2 into main
2026-03-10 09:07:10 +00:00
a677bf65c1 Update src/app/page.tsx 2026-03-10 09:07:06 +00:00
2 changed files with 11 additions and 46 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" }]}
@@ -79,8 +80,7 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
features={[
{
title: "General Dentistry", description: "Tooth pain treatment, cavity filling, and routine dental checkups to keep your smile healthy.", imageSrc: "http://img.b2bpic.net/free-photo/dentists-treat-patients-teeth_1150-19635.jpg", imageAlt: "General dentistry services"},
{ title: "General Dentistry", description: "Tooth pain treatment, cavity filling, and routine dental checkups to keep your smile healthy.", imageSrc: "http://img.b2bpic.net/free-photo/dentists-treat-patients-teeth_1150-19635.jpg", imageAlt: "General dentistry services"},
{
title: "Cosmetic Dentistry", description: "Teeth whitening and smile improvement procedures to enhance your confidence and appearance.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-woman-looking-hopeful-smiling-lean-head-hands-thinking-sitting_1258-194400.jpg", imageAlt: "Cosmetic dentistry services"},
{
@@ -147,8 +147,8 @@ export default function LandingPage() {
imageAlt="Roshan Dental Clinic appointment booking"
mediaAnimation="slide-up"
mediaPosition="right"
inputPlaceholder="Enter your email"
buttonText="Schedule Appointment"
inputPlaceholder="Your email address"
buttonText="Book Appointment Now"
termsText="We respect your privacy. Your information will only be used to contact you about your appointment."
/>
</div>