19 lines
359 B
JavaScript
19 lines
359 B
JavaScript
|
|
'use client'
|
||
|
|
|
||
|
|
import {Roboto} from 'next/font/google'
|
||
|
|
import {createTheme} from '@mui/material/styles'
|
||
|
|
|
||
|
|
const roboto = Roboto({ // eslint-disable-line new-cap
|
||
|
|
weight: ['300', '400', '500', '700'],
|
||
|
|
subsets: ['latin'],
|
||
|
|
display: 'swap',
|
||
|
|
})
|
||
|
|
|
||
|
|
const theme = createTheme({
|
||
|
|
typography: {
|
||
|
|
fontFamily: roboto.style.fontFamily,
|
||
|
|
},
|
||
|
|
})
|
||
|
|
|
||
|
|
export default theme
|