You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Designed for developers who are building open source applications in compliance with the AGPL v3 license and are able to support themselves. The community version of MinIO has all the functionality of the Standard and Enterprise editions.";
232
-
233
222
return(
234
223
<PlanHeader
235
224
isActive={isCommunityPlan}
@@ -240,28 +229,16 @@ const LicensePlans = ({
240
229
<BoxclassName="title-block">
241
230
<BoxclassName="title-main">
242
231
<divclassName="title">Community</div>
243
-
<Tooltiptitle={tooltipText}placement="top-start">
244
-
<divclassName="tool-tip">
245
-
<HelpIconFilled/>
246
-
</div>
247
-
</Tooltip>
248
232
</Box>
249
233
<divclassName="cur-plan-text">
250
234
{isCommunityPlan ? "Current Plan" : ""}
251
235
</div>
252
236
</Box>
253
-
<divclassName="open-source">
254
-
<OpenSourceIcon/>
255
-
Open Source
256
-
</div>
257
237
</PlanHeader>
258
238
);
259
239
};
260
240
261
241
constgetStandardPlanHeader=()=>{
262
-
consttooltipText=
263
-
"Designed for customers who require a commercial license and can mostly self-support but want the peace of mind that comes with the MinIO Subscription Network’s suite of operational capabilities and direct-to-engineer interaction. The Standard version is fully featured but with SLA limitations. ";
264
-
265
242
return(
266
243
<PlanHeader
267
244
isActive={isStandardPlan}
@@ -272,26 +249,16 @@ const LicensePlans = ({
272
249
<BoxclassName="title-block">
273
250
<BoxclassName="title-main">
274
251
<divclassName="title">Standard</div>
275
-
<Tooltiptitle={tooltipText}placement="top-start">
276
-
<divclassName="tool-tip">
277
-
<HelpIconFilled/>
278
-
</div>
279
-
</Tooltip>
280
252
</Box>
281
253
<divclassName="cur-plan-text">
282
254
{isStandardPlan ? "Current Plan" : ""}
283
255
</div>
284
256
</Box>
285
-
<divclassName="price-line">$10 per TiB per month</div>
286
-
<divclassName="minimum-cost">(Minimum of 100TiB)</div>
287
257
</PlanHeader>
288
258
);
289
259
};
290
260
291
261
constgetEnterpriseHeader=()=>{
292
-
consttooltipText=
293
-
"Designed for mission critical environments where both a license and strict SLAs are required. The Enterprise version is fully featured but comes with additional capabilities. ";
294
-
295
262
return(
296
263
<PlanHeader
297
264
isActive={isEnterprisePlan}
@@ -302,18 +269,11 @@ const LicensePlans = ({
302
269
<BoxclassName="title-block">
303
270
<BoxclassName="title-main">
304
271
<divclassName="title">Enterprise</div>
305
-
<Tooltiptitle={tooltipText}placement="top-start">
306
-
<divclassName="tool-tip">
307
-
<HelpIconFilled/>
308
-
</div>
309
-
</Tooltip>
310
272
</Box>
311
273
<divclassName="cur-plan-text">
312
274
{isEnterprisePlan ? "Current Plan" : ""}
313
275
</div>
314
276
</Box>
315
-
<divclassName="price-line">$20 per TiB per month</div>
316
-
<divclassName="minimum-cost">(Minimum of 100TiB)</div>
0 commit comments