From 9d2bc5a9f46bb58e6cfa0aeb99a046955cc48f40 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 17 Apr 2026 06:53:28 +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 d4cbd8d..a836232 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 { Inter_Tight } from "next/font/google"; +import { Montserrat } from "next/font/google"; @@ -19,10 +20,14 @@ export const metadata: Metadata = { }, }; -const interTight = Inter_Tight({ - variable: "--font-inter-tight", + +const montserrat = Montserrat({ + variable: "--font-montserrat", + subsets: ["latin"], +}); +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export default function RootLayout({ @@ -33,7 +38,7 @@ export default function RootLayout({ return ( - + {children}