From 842deb52896f2a0d96b9fc95f68d722329c2c432 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Feb 2026 02:15:18 +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 6032d2c..c7c7ff7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -4,6 +4,7 @@ import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; +import { Raleway } from "next/font/google"; const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], @@ -34,6 +35,11 @@ export const metadata: Metadata = { } }; +const raleway = Raleway({ + variable: "--font-raleway", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -42,9 +48,7 @@ export default function RootLayout({ return ( - + {children} -- 2.49.1 From ed97a5881fd06a3d0fe5dfb72854c22f6fbf71ae Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Feb 2026 02:15:19 +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..7547523 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-family: --font-raleway, 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; + font-family: var(font-family: --font-raleway, sans-serif;), sans-serif; } -- 2.49.1