From d48752f8005ddf1dc2b8adc61176246046178cb7 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Feb 2026 23:01:39 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f4e4af6..42b630c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -4,6 +4,8 @@ import { Source_Sans_3 } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; +import { DM_Sans } from "next/font/google"; +import { Inter } from "next/font/google"; const workSans = Work_Sans({ variable: "--font-work-sans", subsets: ["latin"], @@ -34,6 +36,15 @@ export const metadata: Metadata = { } }; +const dmSans = DM_Sans({ + variable: "--font-dm-sans", + subsets: ["latin"], +}); +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -42,9 +53,7 @@ export default function RootLayout({ return ( - + {children} From e233bee3d7eeab180a37aaf87af5559078984a3e Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Feb 2026 23:01:39 +0000 Subject: [PATCH 2/2] Update theme fonts