From b3683219227bbb1db3dc45c54c2e1af789e2766a Mon Sep 17 00:00:00 2001 From: kodster28 Date: Fri, 21 Mar 2025 08:34:31 -0500 Subject: [PATCH] [Chore] Update json component --- src/components/ProductFeatures.astro | 54 ++++++++++++++-------------- 1 file changed, 28 insertions(+), 26 deletions(-) diff --git a/src/components/ProductFeatures.astro b/src/components/ProductFeatures.astro index c5345136429c77..e080742c499773 100644 --- a/src/components/ProductFeatures.astro +++ b/src/components/ProductFeatures.astro @@ -56,21 +56,23 @@ const entries = Object.entries(plan); )} {additional_descriptions && ( <> - {value.lite || - (value.free && ( + {value.lite ? ( +
  • + Lite: + +
  • + ) : ( + value.free && (
  • Lite: - {value.lite ? ( - - ) : ( - - )} +
  • - ))} + ) + )} )} {value.pro && ( @@ -83,23 +85,23 @@ const entries = Object.entries(plan); )} {additional_descriptions && ( <> - {value.pro_plus || - (value.pro && ( + {value.pro_plus ? ( +
  • + Pro Plus: + +
  • + ) : ( + value.pro && (
  • Pro Plus: - {value.pro_plus ? ( - - ) : ( - - )} +
  • - ))} + ) + )} )} {value.biz && (