2023-11-06 19:12:35 +04:00
|
|
|
|
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'>
|
2024-01-18 20:38:58 +04:00
|
|
|
|
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>.
|
2023-11-06 19:12:35 +04:00
|
|
|
|
</Typography>
|
|
|
|
|
|
<Typography gutterBottom component='h3'>
|
2024-01-18 20:38:58 +04:00
|
|
|
|
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>.
|
2023-11-06 19:12:35 +04:00
|
|
|
|
</Typography>
|
|
|
|
|
|
<Typography gutterBottom component='h3'>
|
2024-01-18 20:38:58 +04:00
|
|
|
|
Plus d’infos sur <Link underline='hover' href='https://o-k-i.net' target='_blank' rel='noreferrer'><strong>o-k-i.net</strong></Link>.
|
2023-11-06 19:12:35 +04:00
|
|
|
|
</Typography>
|
|
|
|
|
|
</Container>
|
|
|
|
|
|
)
|
|
|
|
|
|
}
|