import React from 'react'; import './PriceCard.css'; import check_img_fond_blanc from "../../img_new_design_2025/check-2.svg"; const PriceCard = ({ isPopular = false, title = 'BASIQUE', price = '9.99', features = [ 'Sans engagement', '2 Utilisateurs maximum', 'Email Support', "Jusqu'à 25 Sessions/an", 'Basic Analytics' ], buttonColor = '#fff', buttonTextColor = '#4b5162', priceColor = '#16274f', borderColor = '#c7c9ce' }) => { return (
{isPopular &&
{isPopular && (
LE PLUS POPULAIRE
)}
{title}
{price} € par mois
Sans engagement
{features.map((feature, index) => (
check {feature}
))}
} {!isPopular &&
{title}
{price} € par mois
Sans engagement
{features.map((feature, index) => (
check {feature}
))}
}
); }; export default PriceCard;