diff --git a/src/app/layout.tsx b/src/app/layout.tsx index cf31dbd..ba6ea6c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,8 +1,11 @@ import type { Metadata } from "next"; +import { Inter } from "next/font/google"; import "./globals.css"; +const inter = Inter({ subsets: ["latin"] }); + export const metadata: Metadata = { - title: "Luminous Dental - Premium Dental Care", description: "Experience exceptional dental care with cutting-edge technology and compassionate specialists at Luminous Dental."}; + title: "Luminous Dental", description: "Experience exceptional dental care with cutting-edge technology and compassionate specialists."}; export default function RootLayout({ children, @@ -11,7 +14,7 @@ export default function RootLayout({ }) { return ( -
{children} + {children}