From 522184c86cb6ad985208c4533b8c478f6c024474 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 25 Apr 2026 22:02:29 +0000 Subject: [PATCH 1/3] 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 578efaa..52de42f 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-figtree), sans-serif; + font-family: var(--font-open-sans), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-figtree), sans-serif; + font-family: var(--font-inter), sans-serif; } -- 2.49.1 From 8b0fd3ed8317ef53aa9860ae75a136e5d1a986ba Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 25 Apr 2026 22:02:32 +0000 Subject: [PATCH 2/3] Update theme fonts --- src/app/layout.tsx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 68a68b7..3952599 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -9,6 +9,7 @@ import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Montserrat } from "next/font/google"; import { Figtree } from "next/font/google"; import { Open_Sans } from "next/font/google"; +import { DM_Sans } from "next/font/google"; @@ -25,12 +26,13 @@ export const metadata: Metadata = { -const inter = Inter({ - variable: "--font-inter", + +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); -const openSans = Open_Sans({ - variable: "--font-open-sans", +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); @@ -42,7 +44,7 @@ export default function RootLayout({ return ( - + {children}