diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d148a47..a45e060 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,11 +1,14 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; +import { Poppins } from "next/font/google"; import "./globals.css"; -const inter = Inter({ subsets: ["latin"] }); +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +}); export const metadata: Metadata = { - title: "Medical Center", description: "Comprehensive healthcare excellence"}; + title: "Medical Center", description: "Comprehensive healthcare excellence with state-of-the-art facilities"}; export default function RootLayout({ children, @@ -14,7 +17,9 @@ export default function RootLayout({ }) { return ( - {children} + + {children} +