2024-01-18 20:32:01 +04:00
import { Container , Box , Typography , Button , Link } from '@mui/material'
import { makeStyles } from '@mui/styles'
const useStyles = makeStyles (() => ({
styledFrame : {
border : '2px solid #4CAF50' ,
borderRadius : '10px' ,
boxShadow : '0 4px 8px rgba(0, 0, 0, 0.1)' ,
backgroundColor : '#f9f9f9' ,
padding : '20px' ,
textAlign : 'center' ,
},
btnStyled : {
borderRadius : '5px' ,
boxShadow : '0 2px 2px rgba(0, 0, 0, 0.1)' ,
transition : 'all 0.3s ease' ,
margin : '8px' ,
'&:hover' : {
transform : 'translateY(-2px)' ,
boxShadow : '0 4px 4px rgba(0, 0, 0, 0.2)' ,
},
},
btnSpecial : {
borderRadius : '5px' ,
backgroundColor : '#FFC107' ,
color : 'black' ,
border : 'none' ,
boxShadow : '0 2px 2px rgba(0, 0, 0, 0.2)' ,
transition : 'all 0.3s ease' ,
margin : '1em 0 2.5em' ,
'&:hover' : {
backgroundColor : '#FFD54F' ,
transform : 'scale(1.05)' ,
boxShadow : '0 4px 4px rgba(0, 0, 0, 0.3)' ,
},
},
}))
function CardMethod () {
const classes = useStyles ()
return (
< Container >
< Box sx = {{ display : 'flex' , alignItems : 'center' , justifyContent : 'center' }} >
< Typography variant = 'body2' color = 'textSecondary' >
🔒 Vos paiements sont sécurisés et traités de manière fiable par < strong >< Link href = 'https://stripe.com/' target = '_blank' rel = 'noopener noreferrer' > Stripe < /Link></strong>, une plateforme de paiement en ligne reconnue mondialement.
< /Typography>
< /Box>
< Typography sx = {{ mb : 2 , fontWeight : 'bold' }} variant = 'body2' color = 'textSecondary' >
Aucune information de paiement n ’ est stockée sur notre site .
< /Typography>
{ /* Paiements Ponctuels */ }
< Box >
< Typography gutterBottom variant = 'h6' component = 'h3' > Ponctuel < /Typography>
2024-01-19 12:38:36 +04:00
< Button variant = 'contained' href = 'https://don.o-k-i.net/b/aEUdTw5SD3SH7m0bII' className = { classes . btnStyled } > 1 € < /Button>
< Button variant = 'contained' href = 'https://don.o-k-i.net/b/4gw6r480L1Kz5dScMO' className = { classes . btnStyled } > 5 € < /Button>
< Button variant = 'contained' href = 'https://don.o-k-i.net/b/5kA02G1Cn4WLbCgeUV' className = { classes . btnStyled } > 10 € < /Button>
< Button variant = 'contained' href = 'https://don.o-k-i.net/b/fZebLo94PfBpayc5kn' className = { classes . btnStyled } > 20 € < /Button>
< Button variant = 'contained' href = 'https://don.o-k-i.net/b/6oE5n05SDdth49O004' className = { classes . btnStyled } > 50 € < /Button>
2024-01-18 20:32:01 +04:00
< /Box>
2024-01-19 12:38:36 +04:00
< Button variant = 'contained' href = 'https://don.o-k-i.net/b/6oE2aO94P88X9u8eV4' className = { classes . btnSpecial } >
2024-01-18 20:32:01 +04:00
Montant personnalisé
< /Button>
{ /* Paiements Mensuels */ }
< Box >
< Typography gutterBottom variant = 'h6' component = 'h3' > Mensuel < /Typography>
2024-01-19 12:38:36 +04:00
< Button variant = 'contained' href = 'https://don.o-k-i.net/b/7sI9Dgch14WL7m0fZ3' className = { classes . btnStyled } > 1 € / mois < /Button>
< Button variant = 'contained' href = 'https://don.o-k-i.net/b/8wM4iW4Ozbl95dS6ow' className = { classes . btnStyled } > 5 € / mois < /Button>
< Button variant = 'contained' href = 'https://don.o-k-i.net/b/8wM2aO80L74TcGk3ci' className = { classes . btnStyled } > 10 € / mois < /Button>
< Button variant = 'contained' href = 'https://don.o-k-i.net/b/00g7v894P88XgWAfZ7' className = { classes . btnStyled } > 20 € / mois < /Button>
< Button variant = 'contained' href = 'https://don.o-k-i.net/b/4gw8zc6WHgFtcGkbIP' className = { classes . btnStyled } > 50 € / mois < /Button>
2024-01-18 20:32:01 +04:00
< /Box>
< /Container>
)
}
export default CardMethod