From f44229164e29dbdee560d43ef88dfc41ee89666b Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 16:28:58 +0000 Subject: [PATCH 1/2] Update theme fonts --- src/app/layout.tsx | 91 +++++++++++++++++----------------------------- 1 file changed, 33 insertions(+), 58 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fb9cc5b..42fedca 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,14 +1,19 @@ import type { Metadata } from "next"; import { Inter } from "next/font/google"; +import { Archivo } from "next/font/google"; import "./globals.css"; import "./styles/variables.css"; import "./styles/base.css"; -const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { title: "Computer Club", description: "Join a vibrant community of tech enthusiasts, innovators, and learners."}; +const archivo = Archivo({ + variable: "--font-archivo", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: { @@ -16,7 +21,7 @@ export default function RootLayout({ }) { return ( - {children} + {children}