From c4deb37ea37532662f011712e4bf69be1021c1f3 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Feb 2026 13:59:08 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bace2a0..23a8d0a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -33,6 +33,7 @@ import { Open_Sans } from "next/font/google"; import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import { Archivo } from "next/font/google"; +import { Cormorant_Garamond } from "next/font/google"; const manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], @@ -198,6 +199,12 @@ const archivo = Archivo({ subsets: ["latin"], }); +const cormorantGaramond = Cormorant_Garamond({ + variable: "--font-cormorant-garamond", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -206,7 +213,7 @@ export default function RootLayout({ return ( - + {children} -- 2.49.1 From f5094975946d4ccc291791c5c18dcc8e72938f04 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Feb 2026 13:59:08 +0000 Subject: [PATCH 2/2] Update theme fonts -- 2.49.1