From 2439e42a63896dda7bf615f107203fd5419022fb Mon Sep 17 00:00:00 2001 From: development Date: Sat, 3 Jan 2026 08:15:06 +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 5927113..57834aa 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,12 +1,13 @@ import type { Metadata } from "next"; -import { Inter } 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 inter = Inter({ - variable: "--font-inter", +const cormorantGaramond = Cormorant_Garamond({ + variable: "--font-cormorant-garamond", subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], }); export const metadata: Metadata = { @@ -49,7 +50,7 @@ export default function RootLayout({ {children}