From 6518e1c50352ace5e79413216527d5141bf6b304 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Feb 2026 14:10:30 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 23a8d0a..801fbd6 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -34,6 +34,7 @@ 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"; +import { DM_Sans } from "next/font/google"; const manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], @@ -205,6 +206,11 @@ const cormorantGaramond = Cormorant_Garamond({ weight: ["300", "400", "500", "600", "700"], }); +const dmSans = DM_Sans({ + variable: "--font-dm-sans", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -213,7 +219,7 @@ export default function RootLayout({ return ( - + {children} -- 2.49.1 From 4cbeb789fb74db2bf6e2f85e5ae56fca286ec6a7 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Feb 2026 14:10:31 +0000 Subject: [PATCH 2/2] Update theme fonts -- 2.49.1