diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e3e9629..cf31dbd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,17 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Inter_Tight } 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 interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); export const metadata: Metadata = { - title: "Luminous Dental | Premium Luxury Dental Care", description: "Experience exceptional dental care at Luminous Dental. Award-winning cosmetic, implant, and restorative dentistry with world-class specialists.", keywords: "luxury dental practice, cosmetic dentistry, dental implants, orthodontics, smile design, premium dental care", metadataBase: new URL("https://luminousdental.com"), - alternates: { - canonical: "https://luminousdental.com"}, - openGraph: { - title: "Luminous Dental | Premium Luxury Dental Care", description: "Transform your smile with exceptional dental treatments delivered with precision and artistry. Experience luxury dentistry.", url: "https://luminousdental.com", siteName: "Luminous Dental", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/full-equiped-medical-cabinet_1303-23912.jpg", alt: "Luxurious dental practice"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Luminous Dental | Premium Dental Care", description: "Experience world-class dental treatments in a luxury environment designed for your comfort.", images: ["http://img.b2bpic.net/free-photo/full-equiped-medical-cabinet_1303-23912.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Luminous Dental - Premium Dental Care", description: "Experience exceptional dental care with cutting-edge technology and compassionate specialists at Luminous Dental."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}