diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6dd6fb1..1f1ce12 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -10,6 +10,8 @@ import { Libre_Baskerville } from "next/font/google"; import { Open_Sans } from "next/font/google"; import { Poppins } from "next/font/google"; import { Mulish } from "next/font/google"; +import { Manrope } from "next/font/google"; +import { DM_Sans } from "next/font/google"; @@ -27,8 +29,13 @@ export const metadata: Metadata = { -const mulish = Mulish({ - variable: "--font-mulish", + +const manrope = Manrope({ + variable: "--font-manrope", + subsets: ["latin"], +}); +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); @@ -40,7 +47,7 @@ export default function RootLayout({ return ( - + {children}