diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 395af3e..c7b7d44 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,45 +1,23 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_Sans } 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"], -}); +import "./styles/variables.css"; +import "./styles/base.css"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); - export const metadata: Metadata = { - title: "Luminous Dental | Premium Dental Care & Cosmetic Services", description: "Experience excellence in modern dentistry with state-of-the-art technology and compassionate care. Professional dental implants, whitening, and preventive treatments.", keywords: "dental practice, cosmetic dentistry, dental implants, teeth whitening, professional dental care, luxury dentist", openGraph: { - title: "Luminous Dental | Premium Dental Care", description: "Transform your smile with our world-class dental services. Expert cosmetic and restorative dentistry for over 25 years.", type: "website", siteName: "Luminous Dental"}, - twitter: { - card: "summary_large_image", title: "Luminous Dental | Premium Dental Care", description: "Excellence in modern dentistry with state-of-the-art technology and compassionate expertise."}, -}; + title: "Luminous Dental - Premium Dental Care", description: "Experience excellence in modern dentistry with state-of-the-art technology and compassionate expertise."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}