diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4ef72a9..2959035 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 { Mulish } from "next/font/google"; +import { Roboto } from "next/font/google"; @@ -21,13 +22,10 @@ export const metadata: Metadata = { }, }; -const mulish = Mulish({ - variable: "--font-mulish", - subsets: ["latin"], -}); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], + +const roboto = Roboto({ + variable: "--font-roboto", subsets: ["latin"], + weight: ["100", "300", "400", "500", "700", "900"], }); export default function RootLayout({ @@ -38,7 +36,7 @@ export default function RootLayout({ return ( - + {children}