From e908707be8e4298a45a46e384eb982c93b3b2887 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 11 Apr 2026 21:06:43 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1560da3..180175a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -11,6 +11,7 @@ import { Archivo } from "next/font/google"; import { Raleway } from "next/font/google"; import { Nunito_Sans } from "next/font/google"; import { Nunito } from "next/font/google"; +import { Mulish } from "next/font/google"; @@ -28,8 +29,13 @@ export const metadata: Metadata = { -const nunito = Nunito({ - variable: "--font-nunito", + +const mulish = Mulish({ + variable: "--font-mulish", + subsets: ["latin"], +}); +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); @@ -41,7 +47,7 @@ export default function RootLayout({ return ( - + {children}