Skip to content

Commit a7b9ae0

Browse files
authored
egress pricing update (#201)
1 parent 97f554d commit a7b9ae0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

apps/docs/content/features/pricing.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ The following costs apply when you exceed the plan limits of a project:
125125
</tr>
126126
<tr>
127127
<td className="w-fit whitespace-nowrap"><strong>Egress Traffic</strong></td>
128-
<td className="w-fit"><strong>$0.10</strong> per 1 GB</td>
128+
<td className="w-fit"><strong>$0.02</strong> per 1 GB</td>
129129
</tr>
130130
</tbody>
131131
</table>

apps/docs/src/components/PricingCalculator/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ function PricingCalculatorContent() {
100100
ipv4_addr: 3,
101101
backup: 0.1,
102102
buildTime: 0.033,
103-
egress: 0.1,
103+
egress: 0.02,
104104
core: resources.core === 'lightweight' ? 0.0 : 10.0,
105105
};
106106

@@ -386,7 +386,7 @@ function PricingCalculatorContent() {
386386

387387
if (resources.egress > 0) {
388388
addText('Egress Traffic:', margin, y, { color: colors.gray });
389-
addText(`${resources.egress}GB ($0.10 per 1GB)`, pageWidth - margin - 80, y, { align: 'right', color: colors.darkText });
389+
addText(`${resources.egress}GB ($0.02 per 1GB)`, pageWidth - margin - 80, y, { align: 'right', color: colors.darkText });
390390
y += lineHeight;
391391
}
392392
y += sectionSpacing - lineHeight;
@@ -763,7 +763,7 @@ function PricingCalculatorContent() {
763763
<div className="resource-row">
764764
<div className="resource-info">
765765
<span className="resource-name">Egress Traffic (GB)</span>
766-
<span className="resource-price">$0.10 per 1GB</span>
766+
<span className="resource-price">$0.02 per 1GB</span>
767767
</div>
768768
<div className="controls">
769769
<button

0 commit comments

Comments
 (0)