From 6c940c6ee19166f0559601ec3bac4b22fd20bfdd Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 17 May 2026 17:18:59 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c8b3ac7..9ba6f03 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -9,6 +9,7 @@ import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Public_Sans } from "next/font/google"; import { DM_Sans } from "next/font/google"; import { Inter_Tight } from "next/font/google"; +import { Mulish } from "next/font/google"; @@ -28,10 +29,14 @@ export const metadata: Metadata = { -const interTight = Inter_Tight({ - variable: "--font-inter-tight", + +const mulish = Mulish({ + variable: "--font-mulish", + subsets: ["latin"], +}); +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export default function RootLayout({ @@ -42,7 +47,7 @@ export default function RootLayout({ return ( - + {children}