Skip to content

Commit

Permalink
billing: update pay as you go prices
Browse files Browse the repository at this point in the history
  • Loading branch information
gioelecerati committed Jul 28, 2023
1 parent 91b0ad5 commit 59e87ca
Show file tree
Hide file tree
Showing 3 changed files with 140 additions and 147 deletions.
42 changes: 21 additions & 21 deletions packages/api/src/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,19 +35,19 @@ exports.products = {
{
name: "Transcoding",
description: "Transcoding (minutes)",
price: 0.005,
price: 0.0055,
limit: 3_000,
},
{
name: "Delivery",
description: "Delivery (minutes)",
price: 0.0004,
price: 0.0005,
limit: 100_000,
},
{
name: "Storage",
description: "Storage (minutes)",
price: 0.003,
price: 0.0035,
limit: 10_000,
},
],
Expand Down Expand Up @@ -102,19 +102,19 @@ exports.products = {
{
name: "Transcoding",
description: "Transcoding (minutes)",
price: 0.005,
price: 0.0055,
limit: 3_000,
},
{
name: "Delivery",
description: "Delivery (minutes)",
price: 0.0004,
price: 0.0005,
limit: 100_000,
},
{
name: "Storage",
description: "Storage (minutes)",
price: 0.003,
price: 0.0035,
limit: 10_000,
},
],
Expand All @@ -129,19 +129,19 @@ exports.products = {
{
name: "Transcoding",
description: "Transcoding (minutes)",
price: 0.005,
price: 0.0055,
limit: 20_000,
},
{
name: "Delivery",
description: "Delivery (minutes)",
price: 0.0004,
price: 0.0005,
limit: 500_000,
},
{
name: "Storage",
description: "Storage (minutes)",
price: 0.003,
price: 0.0035,
limit: 50_000,
},
],
Expand All @@ -156,17 +156,17 @@ exports.products = {
{
name: "Transcoding",
description: "Transcoding (minutes)",
price: 0.005,
price: 0.0055,
},
{
name: "Delivery",
description: "Delivery (minutes)",
price: 0.0004,
price: 0.0005,
},
{
name: "Storage",
description: "Storage (minutes)",
price: 0.003,
price: 0.0035,
},
],
monthlyPrice: 0,
Expand Down Expand Up @@ -229,19 +229,19 @@ exports.products = {
{
name: "Transcoding",
description: "Transcoding (minutes)",
price: 0.005,
price: 0.0055,
limit: 3_000,
},
{
name: "Delivery",
description: "Delivery (minutes)",
price: 0.0004,
price: 0.0005,
limit: 100_000,
},
{
name: "Storage",
description: "Storage (minutes)",
price: 0.003,
price: 0.0035,
limit: 10_000,
},
],
Expand All @@ -256,19 +256,19 @@ exports.products = {
{
name: "Transcoding",
description: "Transcoding (minutes)",
price: 0.005,
price: 0.0055,
limit: 20_000,
},
{
name: "Delivery",
description: "Delivery (minutes)",
price: 0.0004,
price: 0.0005,
limit: 500_000,
},
{
name: "Storage",
description: "Storage (minutes)",
price: 0.003,
price: 0.0035,
limit: 50_000,
},
],
Expand All @@ -283,17 +283,17 @@ exports.products = {
{
name: "Transcoding",
description: "Transcoding (minutes)",
price: 0.005,
price: 0.0055,
},
{
name: "Delivery",
description: "Delivery (minutes)",
price: 0.0004,
price: 0.0005,
},
{
name: "Storage",
description: "Storage (minutes)",
price: 0.003,
price: 0.0035,
},
],
monthlyPrice: 0,
Expand Down
12 changes: 6 additions & 6 deletions packages/www/components/Plans/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ const Plans = ({
<span>3,000 minutes</span>
<Tooltip
multiline
content="Then $5 for every additional 1,000 minutes">
content="Then $5.50 for every additional 1,000 minutes">
<Flex
css={{
borderRadius: 1000,
Expand Down Expand Up @@ -398,7 +398,7 @@ const Plans = ({
<span>10,000 minutes</span>
<Tooltip
multiline
content="Then $3 for every additional 1,000 minutes">
content="Then $3.50 for every additional 1,000 minutes">
<Flex
css={{
borderRadius: 1000,
Expand Down Expand Up @@ -427,7 +427,7 @@ const Plans = ({
<Tooltip
multiline
css={{ float: "right" }}
content="Then $0.40 for every additional 1,000 minutes">
content="Then $0.50 for every additional 1,000 minutes">
<Flex
css={{
borderRadius: 1000,
Expand Down Expand Up @@ -517,7 +517,7 @@ const Plans = ({
<span>20,000 minutes</span>
<Tooltip
multiline
content="Then $5 for every additional 1,000 minutes">
content="Then $5.50 for every additional 1,000 minutes">
<Flex
css={{
borderRadius: 1000,
Expand Down Expand Up @@ -545,7 +545,7 @@ const Plans = ({
<span>50,000 minutes</span>
<Tooltip
multiline
content="Then $3 for every additional 1,000 minutes">
content="Then $3.50 for every additional 1,000 minutes">
<Flex
css={{
borderRadius: 1000,
Expand Down Expand Up @@ -573,7 +573,7 @@ const Plans = ({
<span>500,000 minutes</span>
<Tooltip
multiline
content="Then $0.40 for every additional 1,000 minutes">
content="Then $0.50 for every additional 1,000 minutes">
<Flex
css={{
borderRadius: 1000,
Expand Down
Loading

0 comments on commit 59e87ca

Please sign in to comment.