Files
pawol.nu/components/akey/aso.js
T
2024-01-18 20:38:58 +04:00

21 lines
1.0 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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 lactualité</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 lutilisation de <strong>logiciels libres</strong>.
</Typography>
<Typography gutterBottom component='h3'>
Plus dinfos sur <Link underline='hover' href='https://o-k-i.net' target='_blank' rel='noreferrer'><strong>o-k-i.net</strong></Link>.
</Typography>
</Container>
)
}