From 4c92125b98f29018ff3dc61736d63eb08397250f Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Feb 2026 12:09:53 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 05abd08..95c1900 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,6 +6,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { Inter } from "next/font/google"; import { Public_Sans } from "next/font/google"; +import { Manrope } from "next/font/google"; @@ -23,12 +24,9 @@ export const metadata: Metadata = { -const publicSans = Public_Sans({ - variable: "--font-public-sans", - subsets: ["latin"], -}); -const inter = Inter({ - variable: "--font-inter", + +const manrope = Manrope({ + variable: "--font-manrope", subsets: ["latin"], }); @@ -40,7 +38,7 @@ export default function RootLayout({ return ( - + {children} -- 2.49.1 From 8b221f599111d4bcaf7c5558a59915fc7679862e Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Feb 2026 12:09:53 +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 e6e4ae5..be35e85 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-inter), sans-serif; + font-family: var(--font-manrope), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-public-sans), sans-serif; + font-family: var(--font-manrope), sans-serif; } -- 2.49.1