From a9593a9928988903fae3d94acd92ebf78806e2ff Mon Sep 17 00:00:00 2001 From: development Date: Mon, 9 Feb 2026 12:50:42 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 943bc14..87a18e8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -2,7 +2,7 @@ import type { Metadata } from "next"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -import { Public_Sans } from "next/font/google"; +import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; const montserrat = Montserrat({ @@ -57,6 +57,15 @@ const inter = Inter({ subsets: ["latin"], }); +const mulish = Mulish({ + variable: "--font-mulish", + subsets: ["latin"], +}); +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -66,7 +75,7 @@ export default function RootLayout({ {children} -- 2.49.1 From b0fc442d12ae21f0380cff11f6eeaf4d0cbbdb19 Mon Sep 17 00:00:00 2001 From: development Date: Mon, 9 Feb 2026 12:50:43 +0000 Subject: [PATCH 2/2] Update theme fonts --- src/app/styles/base.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/styles/base.css b/src/app/styles/base.css index e6e4ae5..d97fa01 100644 --- a/src/app/styles/base.css +++ b/src/app/styles/base.css @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-public-sans), sans-serif; + font-family: var(--font-mulish), sans-serif; } -- 2.49.1