diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ae872b1..229ea7f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,6 +7,8 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; 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"; @@ -21,8 +23,14 @@ export const metadata: Metadata = { }, }; -const nunito = Nunito({ - variable: "--font-nunito", + + +const manrope = Manrope({ + variable: "--font-manrope", + subsets: ["latin"], +}); +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); @@ -34,7 +42,7 @@ export default function RootLayout({ return ( - + {children}