diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a8a381f..3296767 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -7,6 +7,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Playfair_Display } from "next/font/google"; +import { Mulish } from "next/font/google"; @@ -21,8 +22,9 @@ export const metadata: Metadata = { }, }; -const playfair = Playfair_Display({ - variable: "--font-playfair", + +const mulish = Mulish({ + variable: "--font-mulish", subsets: ["latin"], }); const inter = Inter({ @@ -38,7 +40,7 @@ export default function RootLayout({ return ( - + {children}