diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 6f406c2..0ca782f 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,54 +1,26 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { Archivo } from "next/font/google";
-import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
+import { Inter_Tight } from "next/font/google";
+import "./styles/variables.css";
+import "./styles/base.css";
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const archivo = Archivo({
- variable: "--font-archivo", 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: "Luxury Dental Practice | Premium Dental Care", description: "Experience exceptional dental care at our luxury practice. Expert cosmetic and restorative dentistry with state-of-the-art technology. Book your appointment today.", keywords: "luxury dental practice, cosmetic dentistry, dental implants, teeth whitening, premium dental care, expert dentist", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "Luminous Dental | Your Smile, Our Passion", description: "Premium dental care delivered with expertise and luxury. Transform your smile today.", type: "website", siteName: "Luminous Dental", images: [
- {
- url: "http://img.b2bpic.net/free-photo/close-up-woman-with-fantastic-smile_1232-346.jpg", alt: "beautiful white smile teeth whitening"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Luxury Dental Practice | Luminous Dental", description: "Experience premium dental care with expert cosmetic and restorative services.", images: ["http://img.b2bpic.net/free-photo/close-up-woman-with-fantastic-smile_1232-346.jpg"],
- },
-};
+ title: "Luminous Dental | Premium Dental Care", description: "Experience premium dental care in a luxurious setting. Expert team, state-of-the-art facilities, and exceptional results."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-