diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4fd7d17..7980301 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -8,6 +8,7 @@ import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Archivo } from "next/font/google"; import { Manrope } from "next/font/google"; +import { DM_Sans } from "next/font/google"; @@ -22,8 +23,9 @@ export const metadata: Metadata = { }; -const manrope = Manrope({ - variable: "--font-manrope", + +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); @@ -35,7 +37,7 @@ export default function RootLayout({ return ( - + {children}