Quellcode durchsuchen

Update enterprise-table.tsx

Stefan Pejcic vor 1 Jahr
Ursprung
Commit
7a09d806c2
1 geänderte Dateien mit 40 neuen und 9 gelöschten Zeilen
  1. 40 9
      documentation/src/refine-theme/enterprise-table.tsx

+ 40 - 9
documentation/src/refine-theme/enterprise-table.tsx

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