From 14effb5e929c09af38f0b4a5b72199b8b31bad72 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 24 Feb 2026 10:00:57 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9da2465..3ee9d97 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -4,6 +4,8 @@ import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { Roboto } from "next/font/google"; +import { Work_Sans } from "next/font/google"; +import { Source_Sans_3 } from "next/font/google"; export const metadata: Metadata = { @@ -15,10 +17,14 @@ export const metadata: Metadata = { } }; -const roboto = Roboto({ - variable: "--font-roboto", + +const workSans = Work_Sans({ + variable: "--font-work-sans", + subsets: ["latin"], +}); +const sourceSans3 = Source_Sans_3({ + variable: "--font-source-sans-3", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], }); export default function RootLayout({ @@ -29,7 +35,7 @@ export default function RootLayout({ return ( - + {children} -- 2.49.1 From a614387dd40a42ccdd9a223446c0a038f4faf772 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 24 Feb 2026 10:00:58 +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 3112a53..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-roboto), 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-roboto), sans-serif; + font-family: var(--font-work-sans), sans-serif; } -- 2.49.1