From 7cd676f1b6f89156aebbc5826b86768c50221c6c Mon Sep 17 00:00:00 2001 From: development Date: Tue, 6 Jan 2026 06:26:05 +0000 Subject: [PATCH 1/2] Update src/app/globals.css --- src/app/globals.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/globals.css b/src/app/globals.css index 3efdeca..6c5d7f4 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -495,7 +495,7 @@ html { body { background-color: var(--background); color: var(--foreground); - font-family: var(--font-dm-serif-display), sans-serif; + font-family: var(--font-mulish), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -508,5 +508,5 @@ h3, h4, h5, h6 { - font-family: var(--font-dm-serif-display), sans-serif; + font-family: var(--font-mulish), sans-serif; } \ No newline at end of file -- 2.49.1 From 18484467321d5454acf32ce30e6d8a4bf412c5ce Mon Sep 17 00:00:00 2001 From: development Date: Tue, 6 Jan 2026 06:26:06 +0000 Subject: [PATCH 2/2] Update src/app/layout.tsx --- src/app/layout.tsx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8806665..cfd17c8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,13 +1,12 @@ import type { Metadata } from "next"; -import { DM_Serif_Display } from "next/font/google"; +import { Mulish } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const dmSerifDisplay = DM_Serif_Display({ - variable: "--font-dm-serif-display", +const mulish = Mulish({ + variable: "--font-mulish", subsets: ["latin"], - weight: ["400"], }); export const metadata: Metadata = { @@ -52,7 +51,7 @@ export default function RootLayout({ {children} -- 2.49.1