24 lines
571 B
TypeScript
24 lines
571 B
TypeScript
![]() |
import {Box, Typography} from '@mui/material'
|
||
|
import {makeStyles} from '@mui/styles'
|
||
|
|
||
|
const useStyles = makeStyles(() => ({
|
||
|
footerHolder: {
|
||
|
display: 'flex',
|
||
|
flex: '0 1 3vh',
|
||
|
flexDirection: 'row',
|
||
|
alignItems: 'center',
|
||
|
justifyContent: 'center',
|
||
|
padding: '0 10vw 0 10vw'
|
||
|
}
|
||
|
}))
|
||
|
|
||
|
export const Footer = () => {
|
||
|
const classes = useStyles()
|
||
|
|
||
|
return (
|
||
|
<Box className={classes.footerHolder}>
|
||
|
<Typography id={"footer"}>SPT-Aki ©2021 Created by Rev and Shirito</Typography>
|
||
|
</Box>
|
||
|
)
|
||
|
}
|