From 5f9ffd54475e7ef57277e9d89826788ddedb5fe7 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Feb 2026 12:38:07 +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 39c7422..4b31994 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -5,6 +5,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { Instrument_Sans } from "next/font/google"; import { Figtree } from "next/font/google"; +import { Karla } from "next/font/google"; const outfit = Outfit({ variable: "--font-outfit", subsets: ["latin"], @@ -57,6 +58,11 @@ const figtree = Figtree({ subsets: ["latin"], }); +const karla = Karla({ + variable: "--font-karla", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -65,7 +71,7 @@ export default function RootLayout({ return ( - + {children} -- 2.49.1 From a4fdde1732c40aa83b01f60a308c7f4f6f2c650f Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Feb 2026 12:38:07 +0000 Subject: [PATCH 2/2] Update theme fonts --- src/app/styles/base.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index 9ae9a9f..e4fa0e2 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -11,7 +11,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(font-family: --font-instrument-sans, sans-serif;), sans-serif; + font-family: font-family: var(--font-karla), sans-serif;), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(font-family: --font-instrument-sans, sans-serif;), sans-serif; + font-family: font-family: var(--font-karla), sans-serif;), sans-serif; } -- 2.49.1