diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 91e9d624..a580cc53 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,5 +1,5 @@ import type { Metadata, Viewport } from 'next'; -import { Inter } from 'next/font/google'; +import { Inter, Roboto } from 'next/font/google'; import '@/app/globals.css'; import { Toaster } from 'react-hot-toast'; @@ -12,6 +12,12 @@ const inter = Inter({ subsets: ['latin'], }); +const roboto = Roboto({ + variable: '--font-roboto', + subsets: ['latin'], + weight: ['200', '300', '400', '500', '600', '700', '900'], +}); + export const viewport: Viewport = { themeColor: '#1f74bf', colorScheme: 'light', @@ -30,7 +36,9 @@ export default function RootLayout({ }>) { return ( -
+