From 291391354219096fab54c901dfe0b471255aa15d Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sat, 11 Jul 2026 14:02:48 +0000 Subject: [PATCH 1/2] Changes Co-authored-by: wolfoftyreso-debug <250630591+wolfoftyreso-debug@users.noreply.github.com> --- src/components/PlansSection.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/PlansSection.tsx b/src/components/PlansSection.tsx index 0f2147b..4fbc691 100644 --- a/src/components/PlansSection.tsx +++ b/src/components/PlansSection.tsx @@ -7,7 +7,9 @@ import { z } from "zod"; import { StripeEmbeddedCheckout } from "@/components/StripeEmbeddedCheckout"; import { getStripeEnvironment, hasPaymentsConfigured } from "@/lib/stripe"; -const PRICE_PER_KG = 325; +const PRICE_PER_KG_EXKL = 325; // exkl. moms, används för Stripe/faktura +const VAT_RATE = 0.25; +const PRICE_PER_KG = PRICE_PER_KG_EXKL * (1 + VAT_RATE); // 406,25 kr ink moms – visas för kunden const KG_PER_EMPLOYEE = 0.3; const WEEKS_PER_MONTH = 4; From 441f2608185c033c13e0aaf3e06ff8eeb65cd0dc Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sat, 11 Jul 2026 14:03:03 +0000 Subject: [PATCH 2/2] Changes Co-authored-by: wolfoftyreso-debug <250630591+wolfoftyreso-debug@users.noreply.github.com> --- src/components/PlansSection.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/PlansSection.tsx b/src/components/PlansSection.tsx index 4fbc691..6200750 100644 --- a/src/components/PlansSection.tsx +++ b/src/components/PlansSection.tsx @@ -159,7 +159,7 @@ const PlansSection = () => { Slutför betalning
- {recommendedKg} kg/vecka · {monthlyPrice.toLocaleString("sv-SE")} kr/månad (exkl. moms) + {recommendedKg} kg/vecka · {monthlyPrice.toLocaleString("sv-SE")} kr/månad (ink moms)
- Alla priser exklusive moms. Moms (25%) läggs på vid betalning. + Alla priser inklusive moms (25%).
)}