From 013f6dbc4aad843101a9be6822ed2e5ee01dbcb5 Mon Sep 17 00:00:00 2001 From: development Date: Mon, 9 Feb 2026 13:00:28 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 87a18e8..26c7cdb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -2,8 +2,8 @@ import type { Metadata } from "next"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -import { Mulish } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Manrope } from "next/font/google"; +import { DM_Sans } from "next/font/google"; const montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], @@ -66,6 +66,15 @@ const inter = Inter({ subsets: ["latin"], }); +const manrope = Manrope({ + variable: "--font-manrope", + subsets: ["latin"], +}); +const dmSans = DM_Sans({ + variable: "--font-dm-sans", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -74,9 +83,7 @@ export default function RootLayout({ return ( - + {children} From a46593c9c51cd355d29ff2d8b92f02f1b2fc4621 Mon Sep 17 00:00:00 2001 From: development Date: Mon, 9 Feb 2026 13:00: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 d97fa01..c2b4e50 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-dm-sans), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-mulish), sans-serif; + font-family: var(--font-manrope), sans-serif; }