From effce66e8e91ca1a92071c0d2119cd364e37e7eb Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 23:56:11 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 39 +++++++++++++++++++++++++++------------ 1 file changed, 27 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 74214f9..4cc059f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,17 +1,17 @@ import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; +import { Inter } from "next/font/google"; +import "./styles/base.css"; +import "./styles/variables.css"; import "./globals.css"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/tag/Tag"; -const geist = Geist({ - variable: "--font-geist-sans", subsets: ["latin"], -}); - -const geistMono = Geist_Mono({ - variable: "--font-geist-mono", subsets: ["latin"], +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "EXPERT DENTAL CARE", description: "Expert Dental Care provides comprehensive dental treatments with experienced dentists and advanced technology."}; + title: "EXPERT DENTAL CARE - Professional Dental Services", description: "Welcome to EXPERT DENTAL CARE. We provide comprehensive dental treatments including teeth cleaning, dental implants, teeth whitening, root canal treatment, braces, and cosmetic dentistry."}; export default function RootLayout({ children, @@ -19,9 +19,24 @@ export default function RootLayout({ children: React.ReactNode; }) { return ( - - - {children} + + + + + {children} + +