diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 174e48d..3334ebf 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 { Lato } from "next/font/google"; +import { Nunito } from "next/font/google"; +import { Mulish } from "next/font/google"; @@ -21,10 +23,11 @@ export const metadata: Metadata = { }, }; -const lato = Lato({ - variable: "--font-lato", + + +const mulish = Mulish({ + variable: "--font-mulish", subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], }); export default function RootLayout({ @@ -35,7 +38,7 @@ export default function RootLayout({ return ( - + {children}