diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a25862c..4b04e32 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 { Roboto } from "next/font/google"; +import { Nunito } from "next/font/google"; @@ -20,7 +21,11 @@ export const metadata: Metadata = { }, }; -const roboto = Roboto({ variable: "--font-roboto", subsets: ["latin"], weight: ["100", "300", "400", "500", "700", "900"] }); + +const nunito = Nunito({ + variable: "--font-nunito", + subsets: ["latin"], +}); export default function RootLayout({ children, @@ -30,7 +35,7 @@ export default function RootLayout({ return ( - + {children}