diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index bc7b5d1..3419c29 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,54 +1,20 @@
import type { Metadata } from "next";
-import { Source_Sans_3 } from "next/font/google";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const sourceSans3 = Source_Sans_3({
- variable: "--font-source-sans-3", subsets: ["latin"],
-});
-
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Luxury Dental Practice | Premium Cosmetic & Restorative Dentistry", description: "Experience world-class dental care with advanced cosmetic, restorative, and orthodontic treatments. Schedule your consultation at our premium practice today.", keywords: "luxury dental care, cosmetic dentistry, dental implants, orthodontics, smile makeover, professional dentist", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "Luminous Dental | Premium Dental Care", description: "Transform your smile with our advanced dental treatments and luxury care experience.", siteName: "Luminous Dental", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/close-up-image-dentist-examining-female-s-teeth-dentistry_613910-11693.jpg", alt: "dental smile teeth whitening professional"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Luminous Dental | Premium Dental Care", description: "Experience luxury dental treatments with advanced technology and expert care.", images: ["http://img.b2bpic.net/free-photo/close-up-image-dentist-examining-female-s-teeth-dentistry_613910-11693.jpg"],
- },
-};
+ title: "Luminous Dental - Premium Dental Care", description: "Experience premium dental care with advanced technology and compassionate professionals."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-