From 0cfa1e9e5477954b6fa60569df7acbe504ddbbe7 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Feb 2026 12:31:53 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9aa18e0..53b4245 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -13,6 +13,8 @@ import { Inter } from "next/font/google"; import { Manrope } from "next/font/google"; import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; +import { Work_Sans } from "next/font/google"; +import { Source_Sans_3 } from "next/font/google"; const manrope = Manrope({ variable: "--font-manrope", subsets: ["latin"], @@ -85,6 +87,15 @@ const inter = Inter({ subsets: ["latin"], }); +const workSans = Work_Sans({ + variable: "--font-work-sans", + subsets: ["latin"], +}); +const sourceSans3 = Source_Sans_3({ + variable: "--font-source-sans-3", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -93,7 +104,7 @@ export default function RootLayout({ return ( - + {children} -- 2.49.1 From e598831b672160b9a23c433c31a6a040df27add0 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Feb 2026 12:31:54 +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 5ed95e8..d3c3c15 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;), sans-serif; + font-family: var(--font-source-sans-3), sans-serif;), 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;), sans-serif; + font-family: var(--font-work-sans), sans-serif;), sans-serif; } -- 2.49.1