Compare commits
4 Commits
version_28
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 8a6db81dbc | |||
| 0d95364c0f | |||
| 60dc143746 | |||
| 7eea7aa4b5 |
@@ -62,9 +62,21 @@ const PricingSimpleCards = ({
|
||||
transition={{ duration: 0.6, ease: "easeOut" }}
|
||||
>
|
||||
<GridOrCarousel>
|
||||
{plans.map((plan) => (
|
||||
{plans.map((plan, index) => (
|
||||
<div key={plan.tag} className="flex flex-col gap-5 p-5 h-full card rounded">
|
||||
<span className="px-5 py-2 w-fit text-sm card rounded">{plan.tag}</span>
|
||||
<div className="flex justify-between items-start">
|
||||
<span className="px-5 py-2 w-fit text-sm card rounded">{plan.tag}</span>
|
||||
{index === 0 && (
|
||||
<span className="px-2 py-0.5 rounded-full text-xs font-semibold bg-primary-cta text-primary-cta-text">
|
||||
New
|
||||
</span>
|
||||
)}
|
||||
{index === 1 && (
|
||||
<span className="px-2 py-0.5 rounded-full text-xs font-semibold bg-primary-cta text-primary-cta-text">
|
||||
Popular
|
||||
</span>
|
||||
)}
|
||||
</div>
|
||||
|
||||
<div className="flex flex-col gap-1">
|
||||
<span className="text-5xl font-medium">{plan.price}</span>
|
||||
|
||||
Reference in New Issue
Block a user