From c026c994a52cccc57106cfc8bb8ef2d30caaf4ec Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Feb 2026 12:50:44 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index cedcf0d..5ace032 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -33,6 +33,11 @@ const figtree = Figtree({ subsets: ["latin"], }); +const raleway = Raleway({ + variable: "--font-raleway", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -41,7 +46,7 @@ export default function RootLayout({ return ( - + {children} -- 2.49.1 From aa1c14c98589b26c807532d1995d0299ee7bce32 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Feb 2026 12:50:45 +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 97f8c55..57ffbd5 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-figtree), sans-serif;; + font-family: var(--font-raleway), sans-serif;;; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-figtree), sans-serif;; + font-family: var(--font-raleway), sans-serif;;; } -- 2.49.1