From 05b0019d507e49e3ab804978646d598ed0a931cf Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Feb 2026 13:42:02 +0000 Subject: [PATCH] Update theme fonts --- src/app/layout.tsx | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 21b1fd6..0ce2cd9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -30,6 +30,8 @@ import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import { Inter } from "next/font/google"; import { Open_Sans } from "next/font/google"; +import { DM_Sans } from "next/font/google"; +import { Inter } from "next/font/google"; const manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], @@ -181,6 +183,15 @@ const openSans = Open_Sans({ subsets: ["latin"], }); +const dmSans = DM_Sans({ + variable: "--font-dm-sans", + subsets: ["latin"], +}); +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -189,7 +200,7 @@ export default function RootLayout({ return ( - + {children}