diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ffd0d1b..23ad23d 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 { Mulish } from "next/font/google"; import { Poppins } from "next/font/google"; +import { Roboto } from "next/font/google"; @@ -42,10 +43,11 @@ export const metadata: Metadata = { }; -const poppins = Poppins({ - variable: "--font-poppins", + +const roboto = Roboto({ + variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], + weight: ["100", "300", "400", "500", "700", "900"], }); export default function RootLayout({ @@ -56,7 +58,7 @@ export default function RootLayout({ return ( - + {children}