Skip to content

Commit bef18b3

Browse files
authored
Removes starter pricing (#2027)
1 parent c3431ac commit bef18b3

File tree

1 file changed

+15
-35
lines changed
  • web/platform/src/components/qwik/components

1 file changed

+15
-35
lines changed

web/platform/src/components/qwik/components/table.tsx

Lines changed: 15 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,10 @@ import { component$ } from "@builder.io/qwik";
33
import { Checkmark, Xmark } from "./icons.tsx";
44

55
const features = [
6-
{
7-
feature: "Data Transfer",
8-
free: "Up to 1TB",
9-
enterprise: "Unlimited",
10-
},
116
{
127
feature: "Hosting",
138
free: "Self-hosted",
14-
enterprise: "Self-hosted or partially to fully managed",
15-
},
16-
{
17-
feature: "Private Hosted Cache",
18-
free: <Xmark />,
19-
enterprise: <Checkmark />,
9+
enterprise: "Self-hosted or partially managed",
2010
},
2111
{
2212
feature: "Support",
@@ -34,63 +24,53 @@ const features = [
3424
enterprise: "Linux, MacOS, and Windows",
3525
},
3626
{
37-
feature: "Build Action Breakdown",
27+
feature: "Org-wide sharing",
3828
free: <Checkmark />,
3929
enterprise: <Checkmark />,
4030
},
4131
{
42-
feature: "Live Build Updates",
32+
feature: "Distributed Scheduler",
4333
free: <Checkmark />,
4434
enterprise: <Checkmark />,
4535
},
4636
{
47-
feature: "Org-wide sharing",
37+
feature: "Remote Caching",
4838
free: <Checkmark />,
4939
enterprise: <Checkmark />,
5040
},
5141
{
52-
feature: "GUI",
42+
feature: "Cross-compilation",
5343
free: <Checkmark />,
5444
enterprise: <Checkmark />,
5545
},
5646
{
57-
feature: "Distributed Scheduler",
47+
feature: "External Storage Cache (S3, Redis)",
5848
free: <Checkmark />,
5949
enterprise: <Checkmark />,
6050
},
6151
{
62-
feature: "Autoscaling",
63-
free: <Xmark />,
64-
enterprise: <Checkmark />,
65-
},
66-
{
67-
feature: "Remote Caching",
52+
feature: "Remote Execution",
6853
free: <Checkmark />,
6954
enterprise: <Checkmark />,
7055
},
7156
{
72-
feature: "Cross-compilation",
73-
free: <Checkmark />,
57+
feature: "Autoscaling",
58+
free: <Xmark />,
7459
enterprise: <Checkmark />,
7560
},
7661
{
77-
feature: "External Storage Cache (S3, Redis)",
78-
free: <Checkmark />,
62+
feature: "GUI",
63+
free: <Xmark />,
7964
enterprise: <Checkmark />,
8065
},
8166
{
82-
feature: "Number of CPU cores",
83-
free: "Up to 100",
84-
enterprise: "Unlimited",
85-
},
86-
{
87-
feature: "Unlimited users",
67+
feature: "Build Action Breakdown",
8868
free: <Xmark />,
8969
enterprise: <Checkmark />,
9070
},
9171
{
92-
feature: "Remote Execution",
93-
free: <Checkmark />,
72+
feature: "Live Build Updates",
73+
free: <Xmark />,
9474
enterprise: <Checkmark />,
9575
},
9676
];
@@ -104,7 +84,7 @@ export const FeatureTable = component$(() => {
10484
Feature
10585
</th>
10686
<th class="p-2 w-[30%] md:w-[35%] border-r border-[#2b2b2b] text-center font-semibold">
107-
Starter ($29/mo)
87+
Open Source
10888
</th>
10989
<th class="p-2 w-[30%] md:w-[35%] text-center font-semibold">
11090
Enterprise

0 commit comments

Comments
 (0)