26 lines
692 B
TypeScript
Raw Normal View History

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