From b8b04de26e6276b5e048803ca99eee679ed1b100 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 8 May 2026 01:15:31 +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 52de42f..c719d19 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-open-sans), sans-serif; + font-family: var(--font-inter), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-inter), sans-serif; + font-family: var(--font-dm-sans), sans-serif; } From e70a03cf8e1d70abe221167f41f610d5d283ede0 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 8 May 2026 01:15:33 +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 ce567d9..72f8963 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Open_Sans } from "next/font/google"; import { DM_Sans } from "next/font/google"; +import { Manrope } from "next/font/google"; @@ -23,12 +24,13 @@ export const metadata: Metadata = { -const dmSans = DM_Sans({ - variable: "--font-dm-sans", + +const manrope = Manrope({ + variable: "--font-manrope", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); @@ -40,7 +42,7 @@ export default function RootLayout({ return ( - + {children}