From 9e34ddb8e707c15fbcd5c64dd3d24bfdcc34661d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 24 Feb 2026 20:20:50 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 13b0596..0cd8c4e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -5,6 +5,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { Ubuntu } from "next/font/google"; import { Inter } from "next/font/google"; +import { Archivo } from "next/font/google"; export const metadata: Metadata = { @@ -28,13 +29,9 @@ export const metadata: Metadata = { } }; -const ubuntu = Ubuntu({ - variable: "--font-ubuntu", - subsets: ["latin"], - weight: ["300", "400", "500", "700"], -}); -const inter = Inter({ - variable: "--font-inter", + +const archivo = Archivo({ + variable: "--font-archivo", subsets: ["latin"], }); @@ -46,7 +43,7 @@ export default function RootLayout({ return ( - + {children} -- 2.49.1 From ab0d79ed43f02954a3a43e7c4712cd8b3b00e3b4 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 24 Feb 2026 20:20:51 +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 1331092..0435273 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-archivo), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -24,5 +24,5 @@ h3, h4, h5, h6 { - font-family: var(--font-ubuntu), sans-serif; + font-family: var(--font-archivo), sans-serif; } -- 2.49.1