diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 229ea7f..ae87ec7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -9,6 +9,7 @@ import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Nunito } from "next/font/google"; import { Manrope } from "next/font/google"; import { DM_Sans } from "next/font/google"; +import { Mulish } from "next/font/google"; @@ -25,12 +26,13 @@ export const metadata: Metadata = { -const manrope = Manrope({ - variable: "--font-manrope", + +const mulish = Mulish({ + variable: "--font-mulish", subsets: ["latin"], }); -const dmSans = DM_Sans({ - variable: "--font-dm-sans", +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); @@ -42,7 +44,7 @@ export default function RootLayout({ return ( - + {children}