Files
pawol.nu/components/akey/index.js
T

23 lines
683 B
JavaScript

import Container from '@mui/material/Container'
import Typography from '@mui/material/Typography'
import Box from '@mui/material/Box'
export default function Akey() {
return (
<Box sx={{flexGrow: 1, marginBottom: 3, marginTop: 7}}>
<Container align='center'>
<Box sx={{display: 'flex', alignItems: 'center', justifyContent: 'center'}}>
<Typography sx={{fontWeight: 'bold', mr: 1, mt: 1}} variant='h6' component='h1'>
PAWÒL-NU
</Typography>
</Box>
<Typography sx={{fontStyle: 'italic'}} variant='caption' component='h3'>
Paroles et traductions
</Typography>
</Container>
</Box>
)
}