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}