Update Stor price to 4000kr/wk

Co-authored-by: wolfoftyreso-debug <250630591+wolfoftyreso-debug@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-02 20:28:33 +00:00
parent 58e1a719cf
commit b111f5837f
5 changed files with 48 additions and 36 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ const plans: Record<string, Plan> = {
}, },
"Stor": { "Stor": {
kg: 10, kg: 10,
pricePerKg: 450, pricePerKg: 400,
shopifyLink: "#" shopifyLink: "#"
}, },
}; };
+1 -1
View File
@@ -296,7 +296,7 @@ const AbonnemangForm = ({ selectedPlan, onClose }: AbonnemangFormProps) => {
<option value="">Välj abonnemang</option> <option value="">Välj abonnemang</option>
<option value="Liten (3 kg/vecka)">Liten 3 kg/vecka 1 350 kr</option> <option value="Liten (3 kg/vecka)">Liten 3 kg/vecka 1 350 kr</option>
<option value="Mellan (5 kg/vecka)">Mellan 5 kg/vecka 2 250 kr</option> <option value="Mellan (5 kg/vecka)">Mellan 5 kg/vecka 2 250 kr</option>
<option value="Stor (10 kg/vecka)">Stor 10 kg/vecka 4 500 kr</option> <option value="Stor (10 kg/vecka)"><option value="Stor (10 kg/vecka)">Stor 10 kg/vecka 4 000 kr</option></option>
</select> </select>
{errors.abonnemang && ( {errors.abonnemang && (
<p className="text-destructive text-sm mt-1">{errors.abonnemang}</p> <p className="text-destructive text-sm mt-1">{errors.abonnemang}</p>
+1 -1
View File
@@ -34,7 +34,7 @@ const planDetails = [
{ {
name: "Stor", name: "Stor",
kgPerWeek: "10 kg", kgPerWeek: "10 kg",
priceWeekExclVat: "4 500", priceWeekExclVat: "4 000",
employeeRecommendation: "25+ anställda", employeeRecommendation: "25+ anställda",
features: [ features: [
"10 kg kakor per vecka", "10 kg kakor per vecka",
+25 -21
View File
@@ -1,31 +1,35 @@
{ {
"compilerOptions": { "compilerOptions": {
"types": ["vitest/globals"],
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true, "allowImportingTsExtensions": true,
"isolatedModules": true, "isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx", "jsx": "react-jsx",
"lib": [
/* Linting */ "ES2020",
"strict": false, "DOM",
"DOM.Iterable"
],
"module": "ESNext",
"moduleDetection": "force",
"moduleResolution": "bundler",
"noEmit": true,
"noFallthroughCasesInSwitch": false,
"noImplicitAny": false,
"noUnusedLocals": false, "noUnusedLocals": false,
"noUnusedParameters": false, "noUnusedParameters": false,
"noImplicitAny": false,
"noFallthroughCasesInSwitch": false,
"baseUrl": ".",
"paths": { "paths": {
"@/*": ["./src/*"] "@/*": [
} "./src/*"
]
},
"skipLibCheck": true,
"strict": false,
"target": "ES2020",
"types": [
"vitest/globals"
],
"useDefineForClassFields": true
}, },
"include": ["src"] "include": [
"src"
]
} }
+18 -10
View File
@@ -1,16 +1,24 @@
{ {
"files": [],
"references": [{ "path": "./tsconfig.app.json" }, { "path": "./tsconfig.node.json" }],
"compilerOptions": { "compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
"noImplicitAny": false,
"noUnusedParameters": false,
"skipLibCheck": true,
"allowJs": true, "allowJs": true,
"noImplicitAny": false,
"noUnusedLocals": false, "noUnusedLocals": false,
"noUnusedParameters": false,
"paths": {
"@/*": [
"./src/*"
]
},
"skipLibCheck": true,
"strictNullChecks": false "strictNullChecks": false
} },
"files": [],
"references": [
{
"path": "./tsconfig.app.json"
},
{
"path": "./tsconfig.node.json"
}
]
} }