diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1d7ace9..7350f79 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -12,6 +12,7 @@ import { Open_Sans } from "next/font/google"; import { Poppins } from "next/font/google"; import { Manrope } from "next/font/google"; import { Figtree } from "next/font/google"; +import { Mulish } from "next/font/google"; @@ -35,8 +36,13 @@ export const metadata: Metadata = { -const dmSans = DM_Sans({ - variable: "--font-dm-sans", + +const mulish = Mulish({ + variable: "--font-mulish", + subsets: ["latin"], +}); +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); @@ -48,7 +54,7 @@ export default function RootLayout({ return ( - + {children}