Compare commits

...

4 Commits

Author SHA1 Message Date
8a6db81dbc Merge version_29_1777236877707 into main
Merge version_29_1777236877707 into main
2026-04-26 20:57:03 +00:00
0d95364c0f Bob AI: Add the tag 'Popular' to the second pricing card. 2026-04-26 23:56:56 +03:00
60dc143746 Bob AI: Add the tag 'New' to the first pricing card. 2026-04-26 23:56:02 +03:00
7eea7aa4b5 Merge version_28_1777236759770 into main
Merge version_28_1777236759770 into main
2026-04-26 20:54:18 +00:00

View File

@@ -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>