diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 20c5013..ce44dab 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -11,6 +11,7 @@ import { Raleway } from "next/font/google"; import { Libre_Baskerville } from "next/font/google"; import { Manrope } from "next/font/google"; import { DM_Sans } from "next/font/google"; +import { Roboto } from "next/font/google"; @@ -27,13 +28,11 @@ export const metadata: Metadata = { -const manrope = Manrope({ - variable: "--font-manrope", - subsets: ["latin"], -}); -const dmSans = DM_Sans({ - variable: "--font-dm-sans", + +const roboto = Roboto({ + variable: "--font-roboto", subsets: ["latin"], + weight: ["100", "300", "400", "500", "700", "900"], }); export default function RootLayout({ @@ -44,7 +43,7 @@ export default function RootLayout({ return ( - + {children}