diff --git a/src/components/ProductFeatures.astro b/src/components/ProductFeatures.astro
index 73ad198d54e336..f3ef124eab8bb7 100644
--- a/src/components/ProductFeatures.astro
+++ b/src/components/ProductFeatures.astro
@@ -38,7 +38,7 @@ const entries = Object.entries(plan);
{value.title}
)}
- {Object.entries(value.properties).map(([_, value]: [string, any]) => (
+ {Object.values(value.properties).map((value: any) => (
{value.summary}
)}
- -
- Free:
-
-
+ {value.free && (
+ -
+ Free:
+
+
+ )}
{additional_descriptions && (
+ <>
+ {value.lite ||
+ (value.free && (
+ -
+ Lite:
+ {value.lite ? (
+
+ ) : (
+
+ )}
+
+ ))}
+ >
+ )}
+ {value.pro && (
-
- Lite:
- {value.lite ? (
-
- ) : (
-
- )}
+ Pro:
+
)}
- -
- Pro:
-
-
{additional_descriptions && (
+ <>
+ {value.pro_plus ||
+ (value.pro && (
+ -
+ Pro Plus:
+ {value.pro_plus ? (
+
+ ) : (
+
+ )}
+
+ ))}
+ >
+ )}
+ {value.biz && (
+ -
+ Business:
+
+
+ )}
+ {value.ent && (
-
- Pro Plus:
- {value.pro_plus ? (
-
- ) : (
-
- )}
+ Enterprise:
+
)}
- -
- Business:
-
-
- -
- Enterprise:
-
-
))}