From 8ec9ea002eb5e8475d2cde7c77b2a18bf103cc08 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Feb 2026 11:50:24 +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 f709207..831b7bb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -4,6 +4,8 @@ import { DM_Sans } 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 manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], @@ -35,6 +37,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<{ @@ -43,9 +54,7 @@ export default function RootLayout({ return ( - + {children}