From 8c08fbd3dba961c5fa53e916adf4ff86be89d7f9 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 1 Mar 2026 08:21:27 +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 f36da5e..0544f18 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -4,6 +4,7 @@ import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { Roboto } from "next/font/google"; +import { Archivo } from "next/font/google"; export const metadata: Metadata = { @@ -26,10 +27,10 @@ export const metadata: Metadata = { } }; -const roboto = Roboto({ - variable: "--font-roboto", + +const archivo = Archivo({ + variable: "--font-archivo", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], }); export default function RootLayout({ @@ -40,7 +41,7 @@ export default function RootLayout({ return ( - + {children}