From 74c3562e2315bbdb52504ec9a8dc1786ab4e792c Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 10 May 2026 18:22:50 +0000 Subject: [PATCH] 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 7f67129..679d198 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -9,6 +9,7 @@ import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Nunito_Sans } from "next/font/google"; import { Montserrat } from "next/font/google"; import { Roboto } from "next/font/google"; +import { Mulish } from "next/font/google"; @@ -24,10 +25,14 @@ export const metadata: Metadata = { -const roboto = Roboto({ - variable: "--font-roboto", + +const mulish = Mulish({ + variable: "--font-mulish", + subsets: ["latin"], +}); +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], }); export default function RootLayout({ @@ -38,7 +43,7 @@ export default function RootLayout({ return ( - + {children}