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

21 lines
1.0 KiB
JavaScript
Raw Normal View History

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'>
2023-11-06 19:12:35 +04:00
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 lactualité</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 lutilisation 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 dinfos 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>
)
}