From 4c26cfa1c1717251505ff01fc48141319a939130 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 16:00:31 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 76f5a5a..ac08b08 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,14 +1,9 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); - const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); @@ -26,7 +21,7 @@ export default function RootLayout({ {children} -- 2.49.1 From 487973b161e34b0d728e930867a03202cec9c61a Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 16:00:32 +0000 Subject: [PATCH 2/2] Update src/app/styles/base.css --- 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 d97fa01..34aea07 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-mulish), sans-serif; + font-family: var(--font-inter), sans-serif; } -- 2.49.1