Skip to content

Commit

Permalink
Merge pull request #726 from 3DStreet/change-pricing
Browse files Browse the repository at this point in the history
change pricing to 9.99 and set up a 30 day free trial
  • Loading branch information
kfarr authored Aug 5, 2024
2 parents ee4e7d4 + 2c7a306 commit 987a87a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion config/.env.development
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ FIREBASE_MESSAGING_SENDER_ID = "35938260968"
FIREBASE_APP_ID = "1:35938260968:web:ff479731a6603f73b6f65d"
FIREBASE_MEASUREMENT_ID = "G-YF8EXV88Z0"
STRIPE_PUBLISHABLE_KEY = "pk_test_DZSs5vG1OfSiFdhpSDgnizcL"
STRIPE_PRICE_ID = "price_1PVKKsA638v2qJqBw2E7cY3S"
STRIPE_PRICE_ID = "price_1PgBLbA638v2qJqBcGpXrlpn"
2 changes: 1 addition & 1 deletion config/.env.production
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ FIREBASE_MESSAGING_SENDER_ID = '568813074454'
FIREBASE_APP_ID = '1:568813074454:web:41ec82e30413603c771d37'
FIREBASE_MEASUREMENT_ID = 'G-T65XPDLZ3F'
STRIPE_PUBLISHABLE_KEY = "pk_live_5O2Fz0jVYHikfGupJonnLndB"
STRIPE_PRICE_ID = "price_1PO4nIA638v2qJqBN4DFLOHV"
STRIPE_PRICE_ID = "price_1PgBOoA638v2qJqBSeLGdVQq"
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ const PaymentModal = ({ isOpen, onClose }) => {
metadata: { userId: currentUser.uid },
allow_promotion_codes: true,
subscription_data: {
trial_period_days: 7,
metadata: {
userId: currentUser.uid
}
Expand All @@ -66,7 +67,7 @@ const PaymentModal = ({ isOpen, onClose }) => {
extraCloseKeyCode={72}
>
<div className={styles.paymentDetails}>
<h3>Unlock Geospatial Features with 3DStreet Pro</h3>
<h3>Unlock Geospatial Features with a free 7 day trial</h3>
<h2>
Create with geospatial maps and share your vision in augmented reality
with 3DStreet Pro.
Expand Down Expand Up @@ -101,7 +102,7 @@ const PaymentModal = ({ isOpen, onClose }) => {
</div>
) : (
<Button onClick={startCheckout} variant="filled">
Checkout with Stripe
Try Now
</Button>
)}
</div>
Expand Down

0 comments on commit 987a87a

Please sign in to comment.