From c83d0aabd93311a42669b10f8f52413341a23111 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 08:15:58 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e488a17..111c50e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -8,6 +8,7 @@ import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Libre_Baskerville } from "next/font/google"; import { Inter_Tight } from "next/font/google"; +import { Mulish } from "next/font/google"; @@ -42,10 +43,10 @@ export const metadata: Metadata = { }; -const interTight = Inter_Tight({ - variable: "--font-inter-tight", + +const mulish = Mulish({ + variable: "--font-mulish", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export default function RootLayout({ @@ -56,7 +57,7 @@ export default function RootLayout({ return ( - + {children}