From 72e8e744c987d865f9bed5234fe7b4310c567d6f Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sun, 9 Jul 2023 16:07:07 +0200 Subject: [PATCH] Updated the colors in the Plan.jsx --- src/pages/Pricing/components/Plan/Plan.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/Pricing/components/Plan/Plan.jsx b/src/pages/Pricing/components/Plan/Plan.jsx index a299cfd..a1c4b31 100644 --- a/src/pages/Pricing/components/Plan/Plan.jsx +++ b/src/pages/Pricing/components/Plan/Plan.jsx @@ -14,7 +14,7 @@ export const Plan = ({name, price, features = {}}) => { Logo - {name.toUpperCase()} + {name.toUpperCase()} {price} @@ -23,8 +23,8 @@ export const Plan = ({name, price, features = {}}) => { {Object.entries(features).map(([key, value]) => ( {value === false ? - : } - {value} {key} + : } + {value} {key} ))}