From fe535f03372757383d11f78745fd95474f56ad8f Mon Sep 17 00:00:00 2001 From: development Date: Mon, 22 Dec 2025 12:10:04 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e70ed51..f3448d1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,12 +1,13 @@ import type { Metadata } from "next"; -import { Work_Sans } from "next/font/google"; +import { Cormorant_Garamond } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const workSans = Work_Sans({ - variable: "--font-work-sans", +const cormorantGaramond = Cormorant_Garamond({ + variable: "--font-cormorant-garamond", subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], }); export const metadata: Metadata = { @@ -39,7 +40,7 @@ export default function RootLayout({ {children}