From 9c2bd0a3fb7ff28ded15db0b5a7428a919b99432 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 23:03:30 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) 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} +