From 4f7bbe4203d513592afd5f537b7ea76eb20157fd Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 09:16:15 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 93 +++++++++++++++++++++++++++++----------------- 1 file changed, 59 insertions(+), 34 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 42fedca..69e83f3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,19 +1,14 @@ 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, }: { @@ -21,7 +16,7 @@ export default function RootLayout({ }) { return ( - {children} + {children}