diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 68ba76a..7445496 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-
-
-
- {children}
-
+
+ {children}
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index b79fee1..f560659 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -63,7 +63,8 @@ export default function LandingPage() {
);
-}
\ No newline at end of file
+}