From 9eb63a4e298d8e4098c891917cd5a559f8ee5dda Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Feb 2026 11:23:29 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 37292b8..ef11691 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -3,6 +3,7 @@ import { Source_Sans_3 } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; +import { Inter } from "next/font/google"; const sourceSans3 = Source_Sans_3({ variable: "--font-source-sans-3", subsets: ["latin"], @@ -29,6 +30,11 @@ export const metadata: Metadata = { } }; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -37,9 +43,7 @@ export default function RootLayout({ return ( - + {children} -- 2.49.1 From 558ad71e30b634bb0f25cd45d761eba4f89e5154 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Feb 2026 11:23:30 +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 bbb522f..adcb2fb 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-source-sans-3), sans-serif; + font-family: var(font-family: --font-inter, sans-serif;), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-source-sans-3), sans-serif; + font-family: var(font-family: --font-inter, sans-serif;), sans-serif; } -- 2.49.1