diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1560da3..180175a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -11,6 +11,7 @@ import { Archivo } from "next/font/google"; import { Raleway } from "next/font/google"; import { Nunito_Sans } from "next/font/google"; import { Nunito } from "next/font/google"; +import { Mulish } from "next/font/google"; @@ -28,8 +29,13 @@ export const metadata: Metadata = { -const nunito = Nunito({ - variable: "--font-nunito", + +const mulish = Mulish({ + variable: "--font-mulish", + subsets: ["latin"], +}); +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); @@ -41,7 +47,7 @@ export default function RootLayout({ return ( - + {children}