Files
konstitisyon.nu/src/theme.js
T

19 lines
359 B
JavaScript
Raw Normal View History

2024-05-17 08:42:30 +04:00
'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