From aaa8ca810be71338007caaf637ba4b05eb1849e2 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 23 Apr 2026 22:22:45 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6984365..5323302 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Playfair_Display, Roboto_Mono } from "next/font/google"; +import { Mulish } from "next/font/google"; @@ -25,8 +26,15 @@ export const metadata: Metadata = { }, }; -const playfair = Playfair_Display({ variable: "--font-playfair", subsets: ["latin"] }); -const robotoMono = Roboto_Mono({ variable: "--font-roboto-mono", subsets: ["latin"] }); + +const mulish = Mulish({ + variable: "--font-mulish", + subsets: ["latin"], +}); +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); export default function RootLayout({ children, @@ -36,7 +44,7 @@ export default function RootLayout({ return ( - + {children}