21 lines
1.0 KiB
JavaScript
21 lines
1.0 KiB
JavaScript
import {Container, Link, Typography} from '@mui/material'
|
||
|
||
export default function Aso() {
|
||
return (
|
||
<Container sx={{my: 3, textAlign: 'center'}} >
|
||
<Typography gutterBottom variant='h5' sx={{fontWeight: 'bold', mb: 2}} textAlign='center' component='h2'>
|
||
Qui sommes-nous ?
|
||
</Typography>
|
||
<Typography gutterBottom component='h3'>
|
||
Nous sommes une association à but <strong>non lucratif</strong> dédiée à la <strong>promotion de nos langues</strong> et au <strong>traitement de l’actualité</strong>.
|
||
</Typography>
|
||
<Typography gutterBottom component='h3'>
|
||
Parallèlement, nous proposons des <strong>alternatives</strong> aux géants du numérique comme les <strong>GAFAM</strong>, en privilégiant l’utilisation de <strong>logiciels libres</strong>.
|
||
</Typography>
|
||
<Typography gutterBottom component='h3'>
|
||
Plus d’infos sur <Link underline='hover' href='https://o-k-i.net' target='_blank' rel='noreferrer'><strong>o-k-i.net</strong></Link>.
|
||
</Typography>
|
||
</Container>
|
||
)
|
||
}
|