From 623c05d9f913d5e481b081dd06a28522d2d56951 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 24 Feb 2026 10:02:02 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index decb77f..08f30e3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -20,12 +20,13 @@ export const metadata: Metadata = { -const dmSans = DM_Sans({ - variable: "--font-dm-sans", + +const workSans = Work_Sans({ + variable: "--font-work-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", +const sourceSans3 = Source_Sans_3({ + variable: "--font-source-sans-3", subsets: ["latin"], }); @@ -37,7 +38,7 @@ export default function RootLayout({ return ( - + {children} -- 2.49.1 From dfaaeb7fecb6f0048f35322f8cad7d0475b71b0d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 24 Feb 2026 10:02:03 +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 c719d19..cfcea70 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-inter), sans-serif; + font-family: var(--font-source-sans-3), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-dm-sans), sans-serif; + font-family: var(--font-work-sans), sans-serif; } -- 2.49.1