From b3239e0d25857fe404f7c4162d3ea4cf6a5a84b0 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 18 Feb 2026 16:18:26 +0000 Subject: [PATCH] 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 cba0666..d41441c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -3,6 +3,8 @@ import { Archivo } 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 archivo = Archivo({ variable: "--font-archivo", subsets: ["latin"], @@ -30,6 +32,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<{ @@ -38,9 +49,7 @@ export default function RootLayout({ return ( - + {children}