From 09df73c0d813ea2fd398c3586617699a5c844f7b Mon Sep 17 00:00:00 2001 From: development Date: Mon, 9 Feb 2026 13:40:28 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a38ef41..d1e9edf 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -3,6 +3,8 @@ import { Inter_Tight } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; +import { Open_Sans } from "next/font/google"; +import { Work_Sans } from "next/font/google"; const interTight = Inter_Tight({ variable: "--font-inter-tight", subsets: ["latin"], @@ -27,6 +29,15 @@ export const metadata: Metadata = { } }; +const openSans = Open_Sans({ + variable: "--font-open-sans", + subsets: ["latin"], +}); +const workSans = Work_Sans({ + variable: "--font-work-sans", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -35,9 +46,7 @@ export default function RootLayout({ return ( - + {children} -- 2.49.1 From d7fdbcc70c1276ad6933336c8cb89bed84a273e6 Mon Sep 17 00:00:00 2001 From: development Date: Mon, 9 Feb 2026 13:40:29 +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 a25430f..88a3ed2 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-tight), sans-serif; + font-family: var(--font-work-sans), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-inter-tight), sans-serif; + font-family: var(--font-open-sans), sans-serif; } -- 2.49.1