import {Box, Theme, Typography} from '@mui/material' import {makeStyles} from '@mui/styles' const useStyles = makeStyles((theme: Theme) => ({ footerHolder: { display: 'flex', flex: '0 1 3vh', flexDirection: 'row', alignItems: 'center', justifyContent: 'center', padding: '0 10vw 0 10vw', backgroundColor: theme.palette.background.default, color: theme.palette.text.primary } })) export const Footer = () => { const classes = useStyles() return ( SPT-Aki ©2021 Created by Rev and Shirito ) }