diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 9e811ac..a676aa4 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,58 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Poppins } 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 poppins = Poppins({
- variable: "--font-poppins", subsets: ["latin"],
- weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "SmileCare Dental - Professional Dental Clinic & Care", description: "Expert dental services including cleanings, whitening, and implants. Compassionate care with advanced technology. Book your appointment today.", keywords: "dental clinic, dentist, teeth cleaning, teeth whitening, dental implants, professional dental care", metadataBase: new URL("https://smilecare-dental.example.com"),
- alternates: {
- canonical: "https://smilecare-dental.example.com"},
- openGraph: {
- title: "SmileCare Dental - Your Smile, Our Priority", description: "Comprehensive dental care with professional expertise and compassionate service. Schedule your appointment today.", url: "https://smilecare-dental.example.com", siteName: "SmileCare Dental", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/smiling-woman-reading-diary-office-meeting_23-2147955155.jpg", alt: "modern dental office clinic reception area"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "SmileCare Dental - Professional Dental Care", description: "Expert dental services. Book your appointment today.", images: ["http://img.b2bpic.net/free-photo/smiling-woman-reading-diary-office-meeting_23-2147955155.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "SmileCare Dental - Expert Dental Care", description: "Premium dental services with advanced technology and compassionate care. Book your appointment today."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-