From 49420e5487c95c65454f092675318d60911921f5 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Feb 2026 02:18:42 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c7c7ff7..c00788e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -5,6 +5,7 @@ import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { Raleway } from "next/font/google"; +import { Instrument_Sans } from "next/font/google"; const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], @@ -40,6 +41,11 @@ const raleway = Raleway({ subsets: ["latin"], }); +const instrumentSans = Instrument_Sans({ + variable: "--font-instrument-sans", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -48,7 +54,7 @@ export default function RootLayout({ return ( - + {children} -- 2.49.1 From ef026bec6bc4e6b9ea427fcf986ea14db5a9e6ef Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Feb 2026 02:18:42 +0000 Subject: [PATCH 2/2] Update theme fonts -- 2.49.1