diff --git a/src/components/PlansSection.tsx b/src/components/PlansSection.tsx index 18ada31..1900985 100644 --- a/src/components/PlansSection.tsx +++ b/src/components/PlansSection.tsx @@ -5,34 +5,34 @@ const plans = [ name: "Lilla", kgPerWeek: "3 kg", priceWeekExclVat: "1 350", + employeeRecommendation: "1–10 anställda", features: [ "3 kg kakor per vecka", "Veckoleverans", - "Kortbetalning", + "Betala direkt eller med Klarna", ], - featured: false, }, { name: "Mellan", kgPerWeek: "5 kg", priceWeekExclVat: "2 250", + employeeRecommendation: "10–25 anställda", features: [ "5 kg kakor per vecka", "Veckoleverans", - "Kortbetalning", + "Betala direkt eller med Klarna", ], - featured: true, }, { name: "Stora", kgPerWeek: "10 kg", priceWeekExclVat: "4 500", + employeeRecommendation: "25+ anställda", features: [ "10 kg kakor per vecka", "Veckoleverans", - "Kortbetalning", + "Betala direkt eller med Klarna", ], - featured: false, }, ]; @@ -58,18 +58,8 @@ const PlansSection = () => { {plans.map((plan, index) => (
- {plan.featured && ( -
- - Rekommenderad - -
- )} - {/* Plan header */}

@@ -78,6 +68,9 @@ const PlansSection = () => {

{plan.name}

+

+ Rekommenderas för {plan.employeeRecommendation} +

{/* Price info */} @@ -106,11 +99,7 @@ const PlansSection = () => { {/* CTA Button */} Välj abonnemang