diff --git a/src/components/pages/pricing/hero/hero.jsx b/src/components/pages/pricing/hero/hero.jsx index 84b0b78e3f..070fe2ad0e 100644 --- a/src/components/pages/pricing/hero/hero.jsx +++ b/src/components/pages/pricing/hero/hero.jsx @@ -13,6 +13,7 @@ import InfoIcon from 'components/shared/info-icon'; import LINKS from 'constants/links'; import CheckIcon from 'icons/check.inline.svg'; import CrossIcon from 'icons/cross.inline.svg'; +import sendGtagEvent from 'utils/send-gtag-event'; import AWSIcon from './images/aws.inline.svg'; @@ -48,7 +49,8 @@ const items = [ info: 'Additional storage: $3.5 per 2 GiB', }, { - title: '300 compute hours included', + title: + '300 compute hours included', info: 'Additional usage: $0.16 per compute hour', }, { title: 'Standard support' }, @@ -72,7 +74,8 @@ const items = [ features: [ { title: '50 GiB storage included', info: 'Additional storage: $15 per 10 GiB' }, { - title: '750 compute hours included', + title: + '750 compute hours included', info: 'Additional usage: $0.16 per compute hour', }, { title: 'Priority support' }, @@ -124,41 +127,51 @@ const scaleCardBorderVariants = { }, }; -const Feature = ({ title, info, disabled, type, index }) => ( -