2023-07-22 13:38:54 +04:00
|
|
|
import Container from '@mui/material/Container'
|
|
|
|
|
import Typography from '@mui/material/Typography'
|
|
|
|
|
import Box from '@mui/material/Box'
|
|
|
|
|
|
2026-07-04 14:34:50 +04:00
|
|
|
export default function Akey() {
|
2023-07-22 13:38:54 +04:00
|
|
|
return (
|
2026-04-21 19:31:26 +04:00
|
|
|
<Box sx={{flexGrow: 1, marginBottom: 3, marginTop: 7}}>
|
2023-07-22 13:38:54 +04:00
|
|
|
<Container align='center'>
|
|
|
|
|
<Box sx={{display: 'flex', alignItems: 'center', justifyContent: 'center'}}>
|
|
|
|
|
|
2026-05-12 18:44:36 +04:00
|
|
|
<Typography sx={{fontWeight: 'bold', mr: 1, mt: 1}} variant='h6' component='h1'>
|
|
|
|
|
PAWÒL-NU
|
2023-07-22 13:38:54 +04:00
|
|
|
</Typography>
|
|
|
|
|
|
|
|
|
|
</Box>
|
|
|
|
|
<Typography sx={{fontStyle: 'italic'}} variant='caption' component='h3'>
|
|
|
|
|
Paroles et traductions
|
|
|
|
|
</Typography>
|
|
|
|
|
</Container>
|
|
|
|
|
</Box>
|
|
|
|
|
)
|
|
|
|
|
}
|