Update weekly pricing display

Changed PlansSection to show weekly prices (kr/vecka exkl. moms) instead of monthly, and replaced invoice payment option with card payment. Updated plan data to use priceWeekExclVat, removed Företagsfaktura in favor of Kortbetalning, and adjusted UI text to reflect weekly pricing.

X-Lovable-Edit-ID: edt-45350ab5-b3f8-4923-a752-3556ab401b51
This commit is contained in:
gpt-engineer-app[bot]
2026-01-27 19:49:30 +00:00
+8 -8
View File
@@ -4,33 +4,33 @@ const plans = [
{ {
name: "Lilla", name: "Lilla",
kgPerWeek: "3 kg", kgPerWeek: "3 kg",
priceMonthExclVat: "5 400", priceWeekExclVat: "1 350",
features: [ features: [
"3 kg kakor per vecka", "3 kg kakor per vecka",
"Veckoleverans", "Veckoleverans",
"Företagsfaktura", "Kortbetalning",
], ],
featured: false, featured: false,
}, },
{ {
name: "Mellan", name: "Mellan",
kgPerWeek: "5 kg", kgPerWeek: "5 kg",
priceMonthExclVat: "9 000", priceWeekExclVat: "2 250",
features: [ features: [
"5 kg kakor per vecka", "5 kg kakor per vecka",
"Veckoleverans", "Veckoleverans",
"Företagsfaktura", "Kortbetalning",
], ],
featured: true, featured: true,
}, },
{ {
name: "Stora", name: "Stora",
kgPerWeek: "10 kg", kgPerWeek: "10 kg",
priceMonthExclVat: "18 000", priceWeekExclVat: "4 500",
features: [ features: [
"10 kg kakor per vecka", "10 kg kakor per vecka",
"Veckoleverans", "Veckoleverans",
"Företagsfaktura", "Kortbetalning",
], ],
featured: false, featured: false,
}, },
@@ -87,9 +87,9 @@ const PlansSection = () => {
</div> </div>
<div> <div>
<span className="font-display text-3xl font-bold text-primary"> <span className="font-display text-3xl font-bold text-primary">
{plan.priceMonthExclVat} {plan.priceWeekExclVat}
</span> </span>
<span className="text-muted-foreground ml-1">kr/mån exkl. moms</span> <span className="text-muted-foreground ml-1">kr/vecka exkl. moms</span>
</div> </div>
</div> </div>