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 ( 🔒 Vos paiements sont sécurisés et traités de manière fiable par Stripe, une plateforme de paiement en ligne reconnue mondialement. Aucune information de paiement n’est stockée sur notre site. {/* Paiements Ponctuels */} Ponctuel {/* Paiements Mensuels */} Mensuel ) } export default CardMethod