diff --git a/src/app/layout.tsx b/src/app/layout.tsx index abf8d38..593d5cc 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,6 +6,7 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Manrope } from "next/font/google"; +import { Roboto } from "next/font/google"; @@ -15,9 +16,11 @@ export const metadata: Metadata = { }; -const manrope = Manrope({ - variable: "--font-manrope", + +const roboto = Roboto({ + variable: "--font-roboto", subsets: ["latin"], + weight: ["100", "300", "400", "500", "700", "900"], }); export default function RootLayout({ @@ -28,7 +31,7 @@ export default function RootLayout({ return ( - + {children}