diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 46f8f90..51d1ec9 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 { Raleway } from "next/font/google"; import { Manrope } from "next/font/google"; +import { Nunito_Sans } from "next/font/google"; @@ -43,8 +44,9 @@ export const metadata: Metadata = { }; -const manrope = Manrope({ - variable: "--font-manrope", + +const nunitoSans = Nunito_Sans({ + variable: "--font-nunito-sans", subsets: ["latin"], }); @@ -56,7 +58,7 @@ export default function RootLayout({ return ( - + {children}