From 9092ca27a2508d0b26e8a393c21f0ae08ec01d1e Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Feb 2026 15:08:15 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 085df6b..c9a0120 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -3,6 +3,8 @@ import { Roboto } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; +import { Montserrat } from "next/font/google"; +import { Inter } from "next/font/google"; const roboto = Roboto({ variable: "--font-roboto", subsets: ["latin"], @@ -30,6 +32,15 @@ export const metadata: Metadata = { } }; +const montserrat = Montserrat({ + variable: "--font-montserrat", + subsets: ["latin"], +}); +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -38,9 +49,7 @@ export default function RootLayout({ return ( - + {children} From da0992b6ec012f15b838f522caa5ca338aef2d22 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Feb 2026 15:08:16 +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 3112a53..62c2d18 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-roboto), 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-roboto), sans-serif; + font-family: var(--font-montserrat), sans-serif; }