From 46371ebd1007dd6fe02e99b066a237689d7c69c7 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 30 Apr 2026 10:40:21 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e59605a..86b106e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Lato } from "next/font/google"; +import { Cormorant_Garamond, Lato } from "next/font/google"; @@ -20,11 +21,9 @@ export const metadata: Metadata = { }, }; -const lato = Lato({ - variable: "--font-lato", - subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); + +const cormorantGaramond = Cormorant_Garamond({ variable: "--font-cormorant", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"] }); +const lato = Lato({ variable: "--font-lato", subsets: ["latin"], weight: ["100", "300", "400", "700", "900"] }); export default function RootLayout({ children, @@ -34,7 +33,7 @@ export default function RootLayout({ return ( - + {children}