Add Roboto font

This commit is contained in:
2024-05-16 19:38:20 +04:00
parent cf8bc07e69
commit 838a1a2f62
4 changed files with 14 additions and 1 deletions
+5
View File
@@ -1,3 +1,8 @@
import '@fontsource/roboto/300.css'
import '@fontsource/roboto/400.css'
import '@fontsource/roboto/500.css'
import '@fontsource/roboto/700.css'
export default function RootLayout({children}) { // eslint-disable-line react/prop-types
return (
<html lang='fr'>
+3 -1
View File
@@ -1,3 +1,5 @@
import {Typography} from '@mui/material'
export default function Page() {
return <h1>konstitisyon.la</h1>
return <Typography variant='h1'>konstitisyon.la</Typography>
}