From 9e34ddb8e707c15fbcd5c64dd3d24bfdcc34661d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 24 Feb 2026 20:20:50 +0000 Subject: [PATCH] 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}