From 7382a4ec7ab9cd14d027f54553df02cbb18afa66 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 23:03:33 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 37 ++++++++++++++++++++++++------------- 1 file changed, 24 insertions(+), 13 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 74214f9..1ed4dfd 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,17 +1,14 @@ import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; -import "./globals.css"; +import { DM_Sans } from "next/font/google"; +import "./styles/variables.css"; +import "./styles/base.css"; -const geist = Geist({ - variable: "--font-geist-sans", subsets: ["latin"], -}); - -const geistMono = Geist_Mono({ - variable: "--font-geist-mono", subsets: ["latin"], +const dmSans = DM_Sans({ + variable: "--font-dm-sans", 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 - Comprehensive Dental Services", description: "Welcome to EXPERT DENTAL CARE. We provide comprehensive dental treatments including teeth cleaning, dental implants, teeth whitening, and more. 20+ years of experience serving happy patients."}; export default function RootLayout({ children, @@ -19,9 +16,23 @@ export default function RootLayout({ children: React.ReactNode; }) { return ( - - - {children} + + +
+