Update enterprise-table.tsx

This commit is contained in:
Stefan Pejcic 2024-05-06 18:48:25 +02:00 committed by GitHub
parent b235f2d18d
commit 7a09d806c2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -487,21 +487,30 @@ const TableText = ({ children }) => {
const tableData = [ const tableData = [
{ {
title: "Support", title: "Pricing",
items: [ items: [
{ {
description: "Support Level", description: "$",
community: <TableText>Community Support</TableText>, community: (
enterprise: <TableText>Priority Support</TableText>, <TableText>forever free</TableText>
),
enterprise: (
<TableText>$20/month</TableText>
),
valueType: { valueType: {
community: "text", community: "text",
enterprise: "text", enterprise: "text",
}, },
}, },
],
},
{
title: "Support",
items: [
{ {
description: "Support Channels", description: "Support Channels",
community: <TableText>Community Channels</TableText>, community: <TableText>Community Forums & Discord</TableText>,
enterprise: <TableText>Private Support Channel</TableText>, enterprise: <TableText>Ticketing & Hands-on support</TableText>,
valueType: { valueType: {
community: "text", community: "text",
enterprise: "text", enterprise: "text",
@ -511,7 +520,7 @@ const tableData = [
description: "SLA", description: "SLA",
community: <CrossIcon />, community: <CrossIcon />,
enterprise: ( enterprise: (
<TableText>Response time within one business day</TableText> <TableText>Response time within one hour</TableText>
), ),
valueType: { valueType: {
community: "icon", community: "icon",
@ -570,7 +579,7 @@ const tableData = [
], ],
}, },
{ {
title: "Number of Accounts", title: "Accounts & Websites",
items: [ items: [
{ {
description: "Admin Accounts", description: "Admin Accounts",
@ -594,6 +603,19 @@ const tableData = [
enterprise: "text", enterprise: "text",
}, },
}, },
{
description: "Websites",
community: <TableText>Unlimited</TableText>,
enterprise: (
<TableText>
Unlimited
</TableText>
),
valueType: {
community: "text",
enterprise: "text",
},
},
], ],
}, },
{ {
@ -640,6 +662,15 @@ const tableData = [
enterprise: "icon", enterprise: "icon",
}, },
}, },
{
description: "FOSSBilling Module",
community: <CrossIcon />,
enterprise: <CheckIcon />,
valueType: {
community: "icon",
enterprise: "icon",
},
},
], ],
}, },
{ {