From 5b9996de2c9832a7d940a58f0337e82a1eacdc64 Mon Sep 17 00:00:00 2001 From: development Date: Mon, 9 Feb 2026 13:31:36 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 582a448..49c731a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,8 +1,9 @@ import type { Metadata } from "next"; -import { Cormorant_Garamond } from "next/font/google"; 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"; const cormorantGaramond = Cormorant_Garamond({ variable: "--font-cormorant-garamond", subsets: ["latin"], @@ -28,6 +29,15 @@ export const metadata: Metadata = { } }; +const mulish = Mulish({ + variable: "--font-mulish", + subsets: ["latin"], +}); +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -36,9 +46,7 @@ export default function RootLayout({ return ( - + {children} -- 2.49.1 From 2abfb2c71881a521c5fed54b9e971c6332f612ac Mon Sep 17 00:00:00 2001 From: development Date: Mon, 9 Feb 2026 13:31:37 +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 92b1e9b..d97fa01 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-cormorant-garamond), 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-cormorant-garamond), sans-serif; + font-family: var(--font-mulish), sans-serif; } -- 2.49.1