From 60dc14374664b60cb3ec7a3c6ea8eb4a93744078 Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Sun, 26 Apr 2026 23:56:02 +0300 Subject: [PATCH 1/2] Bob AI: Add the tag 'New' to the first pricing card. --- .../sections/pricing/PricingSimpleCards.tsx | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/components/sections/pricing/PricingSimpleCards.tsx b/src/components/sections/pricing/PricingSimpleCards.tsx index 2a2f244..b30fae0 100644 --- a/src/components/sections/pricing/PricingSimpleCards.tsx +++ b/src/components/sections/pricing/PricingSimpleCards.tsx @@ -62,9 +62,16 @@ const PricingSimpleCards = ({ transition={{ duration: 0.6, ease: "easeOut" }} > - {plans.map((plan) => ( + {plans.map((plan, index) => (
- {plan.tag} +
+ {plan.tag} + {index === 0 && ( + + New + + )} +
{plan.price} -- 2.49.1 From 0d95364c0fab84ace0fda0809908ae0c7eece3d3 Mon Sep 17 00:00:00 2001 From: kudindmitriy Date: Sun, 26 Apr 2026 23:56:56 +0300 Subject: [PATCH 2/2] Bob AI: Add the tag 'Popular' to the second pricing card. --- src/components/sections/pricing/PricingSimpleCards.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/components/sections/pricing/PricingSimpleCards.tsx b/src/components/sections/pricing/PricingSimpleCards.tsx index b30fae0..8518550 100644 --- a/src/components/sections/pricing/PricingSimpleCards.tsx +++ b/src/components/sections/pricing/PricingSimpleCards.tsx @@ -71,6 +71,11 @@ const PricingSimpleCards = ({ New )} + {index === 1 && ( + + Popular + + )}
-- 2.49.1