Skip to content

Commit

Permalink
fix: update tier values (#2026)
Browse files Browse the repository at this point in the history
<img width="997" alt="Screen Shot 2022-10-12 at 12 17 28 PM"
src="https://user-images.githubusercontent.com/1189523/195429068-94e5e03f-9393-4ffa-b624-de61124a6925.png">

Co-authored-by: Drew <22156330+drewdelano@users.noreply.github.com>
Co-authored-by: Benjamin Goering <171782+gobengo@users.noreply.github.com>
  • Loading branch information
3 people committed Oct 19, 2022
1 parent 2b847ee commit aacb1d7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions packages/website/components/contexts/plansContext.js
Expand Up @@ -35,19 +35,19 @@ export const sharedPlans = [
title: 'Lite',
description: 'For those that want to take advantage of more storage',
price: '$3/mo',
baseStorage: '15GiB',
additionalStorage: '$0.20 / GiB',
bandwidth: '30GiB / month',
baseStorage: '30GiB',
additionalStorage: '$0.10 / GiB',
bandwidth: '60GiB / month',
blockLimit: '10,000 / GiB',
},
{
id: /** @type {const} */ ('pro'),
title: 'Expert',
description: 'Our lowest price per GiB stored. For those with use cases that require scale.',
price: '$10/mo',
baseStorage: '60GiB',
additionalStorage: '$0.17 / GiB',
bandwidth: '120GiB / month',
baseStorage: '120GiB',
additionalStorage: '$0.08 / GiB',
bandwidth: '240GiB / month',
blockLimit: '10,000 / GiB',
},
];
Expand Down
8 changes: 4 additions & 4 deletions packages/website/pages/pricing.js
Expand Up @@ -164,8 +164,8 @@ const PricingTiers = () => {
<Card
title="Lite"
price="$3"
storageAllocation="15GiB storage"
storageOverageRate="+ $0.20/mo per additional GiB"
storageAllocation="30GiB storage"
storageOverageRate="+ $0.10/mo per additional GiB"
callToAction="CHOOSE THIS PLAN"
callToActionUrl="/account/payment?plan=lite"
>
Expand All @@ -181,8 +181,8 @@ const PricingTiers = () => {
title="Expert"
price="$10"
isBestValue={true}
storageAllocation="60GiB storage"
storageOverageRate="+ $0.17/mo per additional GiB"
storageAllocation="120GiB storage"
storageOverageRate="+ $0.08/mo per additional GiB"
callToAction="CHOOSE THIS PLAN"
callToActionUrl="/account/payment?plan=pro"
>
Expand Down

0 comments on commit aacb1d7

Please sign in to comment.