2022-02-19 22:20:02 +04:00
import { useState } from 'react'
import { Link , List , ListItem , ListItemIcon , ListItemText , Paper , Typography } from '@mui/material'
import ArrowRightAltIcon from '@mui/icons-material/ArrowRightAlt'
import CGUDialog from '../cgu/cgu-dialog'
export default function Presantasyon () {
const [ open , setOpen ] = useState ( false )
return (
<>
< CGUDialog open = { open } setOpen = { setOpen } />
2023-06-25 15:46:38 +04:00
< Paper sx = {{ padding : 3 , textAlign : 'justify' , marginTop : 5 }} >
2026-04-21 19:31:26 +04:00
< Typography paragraph = 'true' variant = 'subtitle1' component = 'div' >
2022-02-19 22:20:02 +04:00
Tous les services que nous proposons sont < strong > gratuits < /strong> et ne contiennent <strong>aucune publicité</strong>. Les réseaux que nous utilisons sont hébergés sur <strong>nos serveurs</strong>. <br />
2022-07-18 01:20:42 +04:00
Tout ceci est possible grâce aux < strong > dons < /strong> ❤️
2022-02-19 22:20:02 +04:00
< /Typography>
2026-04-21 19:31:26 +04:00
< Typography paragraph = 'true' variant = 'subtitle1' component = 'div' >
2022-02-19 22:20:02 +04:00
< strong > Toute contribution , aussi modeste soit - elle , nous permet d ’ augmenter nos capacités < /strong>.
< /Typography>
2026-04-21 19:31:26 +04:00
< Typography paragraph = 'true' variant = 'subtitle1' component = 'div' >
2023-07-22 13:50:24 +04:00
Concernant les dons , ils peuvent s & apos ; effectuer via < Link underline = 'hover' href = 'https://liberapay.com/OKi/donate' target = '_blank' rel = 'noreferrer' >< strong > Liberapay < /strong></Link>, <Link underline='hover' href='https://www.paypal.com/donate/?hosted_button_id=5Q3KPR79CAZVW' target='_blank' rel='noreferrer'><strong>PayPal</strong></Link>.
2022-03-06 10:12:04 +04:00
< /Typography>
2026-04-21 19:31:26 +04:00
< Typography paragraph = 'true' variant = 'subtitle1' component = 'div' >
2026-05-12 21:27:23 +04:00
Veuillez prendre connaissance des < Link underline = 'hover' href = '#' onClick = {() => setOpen ( true )} >< strong > CGU et de la politique de confidentialité < /strong></Link> au chapitre 9 "Les dons".
2022-02-19 22:20:02 +04:00
< /Typography>
< Typography variant = 'subtitle1' component = 'div' >
Si vous n ’ avez pas les moyens de contribuer financièrement , vous pouvez effectuer des actions simples , rapides et surtout gratuites 😏 pour nous soutenir au quotidien :
< /Typography>
< List >
< ListItem >
< ListItemIcon >
< ArrowRightAltIcon />
< /ListItemIcon>
< ListItemText >
2022-07-18 01:20:42 +04:00
partager nos contenus sur vos réseaux ( Facebook , Twitter , Telegram etc )
2022-02-19 22:20:02 +04:00
< /ListItemText>
< /ListItem>
< ListItem >
< ListItemIcon >
< ArrowRightAltIcon />
< /ListItemIcon>
< ListItemText >
2022-07-18 01:20:42 +04:00
utiliser nos plateformes en plus de vos réseaux habituels ( nos réseaux sont listés sur < Link underline = 'hover' href = 'https://o-k-i.net' target = '_blank' rel = 'noreferrer' >< strong > o - k - i . net < /strong></Link>)
2022-02-19 22:20:02 +04:00
< /ListItemText>
< /ListItem>
< ListItem >
< ListItemIcon >
< ArrowRightAltIcon />
< /ListItemIcon>
< ListItemText >
parlez de nous autour de vous 🗣️
< /ListItemText>
< /ListItem>
< /List>
2026-04-21 19:31:26 +04:00
< Typography paragraph = 'true' variant = 'subtitle1' component = 'div' >
2026-06-26 00:34:04 +04:00
Pour toute question , n ’ hésitez pas à nous contacter par courriel < Link href = { `mailto: ${ process . env . NEXT_PUBLIC_ORG_EMAIL || 'kontak@o-k-i.net' } ` } >< strong > { process . env . NEXT_PUBLIC_ORG_EMAIL || 'kontak@o-k-i.net' } < /strong></Link>.
2022-02-19 22:20:02 +04:00
< /Typography>
2026-04-21 19:31:26 +04:00
< Typography paragraph = 'true' variant = 'subtitle1' component = 'div' >
2022-02-19 22:20:02 +04:00
< strong > Merci par avance pour votre soutien 🥰 < /strong>
< /Typography>
< /Paper>
< />
)
}