diff --git a/src/components/PlansSection.tsx b/src/components/PlansSection.tsx index 22ac198..d6de039 100644 --- a/src/components/PlansSection.tsx +++ b/src/components/PlansSection.tsx @@ -2,44 +2,50 @@ import { Check } from "lucide-react"; const plans = [ { - name: "Bas", - subtitle: "Kontorsabonnemang", - price: "1 990", - period: "kr/månad", - description: "Perfekt för mindre kontor med upp till 15 personer", + name: "Starter", + subtitle: "Abonnemang", + kgPerWeek: "3 kg", + priceWeekExclVat: "1 350", + priceWeekInclVat: "1 687,50", + priceMonthExclVat: "5 400", + priceMonthInclVat: "6 750", features: [ - "2 leveranser per månad", - "Premium konditorikakor", - "Fast leveransdag", + "3 kg kakor per vecka", + "Veckoleverans", "Företagsfaktura", + "Flexibelt upplägg", ], featured: false, }, { - name: "Pro", - subtitle: "Kontorsabonnemang", - price: "3 490", - period: "kr/månad", - description: "För växande företag med 15–40 personer", + name: "Standard", + subtitle: "Abonnemang", + kgPerWeek: "5 kg", + priceWeekExclVat: "2 250", + priceWeekInclVat: "2 812,50", + priceMonthExclVat: "9 000", + priceMonthInclVat: "11 250", features: [ - "4 leveranser per månad", - "Utvalda sortiment", + "5 kg kakor per vecka", + "Veckoleverans", "Prioriterad hantering", - "Fakturabetalning", + "Företagsfaktura", ], featured: true, }, { - name: "Avtal", - subtitle: "Företagsanpassat", - price: "Offert", - period: "", - description: "För stora kontor, event och kedjor", + name: "Pro / Office Plus", + subtitle: "Abonnemang", + kgPerWeek: "10 kg", + priceWeekExclVat: "4 500", + priceWeekInclVat: "5 625", + priceMonthExclVat: "18 000", + priceMonthInclVat: "22 500", features: [ - "Anpassad volym", - "Möjlighet till branding", - "Avtalspriser", + "10 kg kakor per vecka", + "Veckoleverans", "Personlig kontakt", + "Anpassade sortiment", ], featured: false, }, @@ -89,20 +95,25 @@ const PlansSection = () => { - {/* Price */} -
- - {plan.price} - - {plan.period && ( - {plan.period} - )} + {/* Price info */} +
+
+ {plan.kgPerWeek}/vecka +
+
+ + {plan.priceMonthInclVat} + + kr/mån +
+
+ ({plan.priceMonthExclVat} kr exkl. moms) +
+
+ Veckopris: {plan.priceWeekInclVat} kr inkl. moms +
-

- {plan.description} -

- {/* Features */}
))}