From 2fd110df4ed2dbfffcc35b71dd75bd348c5223b0 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 11 Jun 2026 20:03:15 +0000 Subject: [PATCH] Update theme fonts --- src/app/layout.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d2ff308..0b2e285 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -8,6 +8,7 @@ import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Libre_Baskerville } from "next/font/google"; import { Inter_Tight } from "next/font/google"; +import { Archivo } from "next/font/google"; @@ -43,10 +44,10 @@ export const metadata: Metadata = { }; -const interTight = Inter_Tight({ - variable: "--font-inter-tight", + +const archivo = Archivo({ + variable: "--font-archivo", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export default function RootLayout({ @@ -57,7 +58,7 @@ export default function RootLayout({ return ( - + {children}