File tree 3 files changed +22
-9
lines changed
3 files changed +22
-9
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,11 @@ import * as React from "react";
5
5
6
6
import { EditInline } from "@/components/EditInline" ;
7
7
8
- const PRO_PLAN_SCREENSHOT_COUNT = 15000 ;
9
- const PRO_PLAN_BASE_PRICE = 30 ;
10
- const ADDITIONAL_SCREENSHOT_PRICE = 0.0025 ;
8
+ import {
9
+ ADDITIONAL_SCREENSHOT_PRICE ,
10
+ PRO_PLAN_BASE_PRICE ,
11
+ PRO_PLAN_SCREENSHOT_COUNT ,
12
+ } from "./constants" ;
11
13
12
14
const strToNum = ( str : string ) => ( str === "" ? 0 : parseInt ( str , 10 ) ) ;
13
15
Original file line number Diff line number Diff line change
1
+ export const PRO_PLAN_BASE_PRICE = 100 ;
2
+ export const HOBBY_PLAN_SCREENSHOT_COUNT = 5000 ;
3
+ export const PRO_PLAN_SCREENSHOT_COUNT = 15000 ;
4
+ export const ADDITIONAL_SCREENSHOT_PRICE = 0.004 ;
5
+ export const GITHUB_SSO_PRICE = 50 ;
Original file line number Diff line number Diff line change @@ -22,11 +22,13 @@ import { Tooltip } from "@/components/Tooltip";
22
22
import { getMetadata } from "@/lib/metadata" ;
23
23
24
24
import { Simulator } from "./Simulator" ;
25
-
26
- const HOBBY_PLAN_SCREENSHOT_COUNT = 5000 ;
27
- const PRO_PLAN_SCREENSHOT_COUNT = 15000 ;
28
- const ADDITIONAL_SCREENSHOT_PRICE = 0.0025 ;
29
- const GITHUB_SSO_PRICE = 50 ;
25
+ import {
26
+ ADDITIONAL_SCREENSHOT_PRICE ,
27
+ GITHUB_SSO_PRICE ,
28
+ HOBBY_PLAN_SCREENSHOT_COUNT ,
29
+ PRO_PLAN_BASE_PRICE ,
30
+ PRO_PLAN_SCREENSHOT_COUNT ,
31
+ } from "./constants" ;
30
32
31
33
const dollarFormatter = new Intl . NumberFormat ( undefined , {
32
34
style : "currency" ,
@@ -188,7 +190,11 @@ export default function Page() {
188
190
< Description >
189
191
Unlimited screenshots and team collaboration.
190
192
</ Description >
191
- < Price amount = { 30 } recurring = { true } fixedPrice = { false } />
193
+ < Price
194
+ amount = { PRO_PLAN_BASE_PRICE }
195
+ recurring = { true }
196
+ fixedPrice = { false }
197
+ />
192
198
< CTA href = "https://app.argos-ci.com/signup?plan=pro" >
193
199
Start Free Trial
194
200
</ CTA >
You can’t perform that action at this time.
0 commit comments