diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 26410f1..7432745 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,11 +1,8 @@ import type { Metadata } from "next"; -import { Open_Sans } from "next/font/google"; +import { DM_Sans } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -const openSans = Open_Sans({ - variable: "--font-open-sans", - subsets: ["latin"], -}); export const metadata: Metadata = { title: "Tech Club | Empowering Tech Enthusiasts Since 2018", @@ -13,6 +10,15 @@ export const metadata: Metadata = { keywords: ["computer club", "tech enthusiasts", "coding club", "student technology", "tech community"], }; +const dmSans = DM_Sans({ + variable: "--font-dm-sans", + subsets: ["latin"], +}); +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -20,7 +26,7 @@ export default function RootLayout({ }>) { return ( -
+ {children}