2023-07-22 13:38:54 +04:00
|
|
|
import PropTypes from 'prop-types'
|
|
|
|
|
import Container from '@mui/material/Container'
|
|
|
|
|
import Typography from '@mui/material/Typography'
|
|
|
|
|
import Box from '@mui/material/Box'
|
2026-04-21 19:31:26 +04:00
|
|
|
import Grid from '@mui/material/Grid'
|
2023-07-22 13:38:54 +04:00
|
|
|
import Button from '@mui/material/Button'
|
|
|
|
|
import Image from 'next/image'
|
|
|
|
|
import Link from 'next/link'
|
|
|
|
|
|
|
|
|
|
export default function Akey({logo}) {
|
|
|
|
|
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'}}>
|
|
|
|
|
|
|
|
|
|
<Typography sx={{fontWeight: 'bold', mr: 1}} variant='h6' component='h1'>
|
|
|
|
|
OKI
|
|
|
|
|
</Typography>
|
|
|
|
|
|
|
|
|
|
<Image
|
|
|
|
|
width={32}
|
|
|
|
|
height={32}
|
|
|
|
|
alt='OKI logo'
|
|
|
|
|
src={logo}
|
2026-04-21 19:31:26 +04:00
|
|
|
loading='eager'
|
2023-07-22 13:38:54 +04:00
|
|
|
/>
|
|
|
|
|
</Box>
|
|
|
|
|
<Typography sx={{fontWeight: 'bold'}} variant='h6' component='h2'>
|
2024-06-01 20:23:46 +04:00
|
|
|
ORGANISATION KA INTERNATIONALE
|
2023-07-22 13:38:54 +04:00
|
|
|
</Typography>
|
|
|
|
|
<Typography sx={{fontStyle: 'italic'}} variant='caption' component='h3'>
|
|
|
|
|
Paroles et traductions
|
|
|
|
|
</Typography>
|
|
|
|
|
</Container>
|
|
|
|
|
</Box>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Akey.propTypes = {
|
|
|
|
|
logo: PropTypes.object.isRequired
|
|
|
|
|
}
|