File tree Expand file tree Collapse file tree 2 files changed +21
-6
lines changed Expand file tree Collapse file tree 2 files changed +21
-6
lines changed Original file line number Diff line number Diff line change @@ -91,6 +91,12 @@ const Team = ({ urlToken }) => {
91
91
} = data
92
92
93
93
const seatsLeft = totalSeats - members . length
94
+ const packageDisplayName =
95
+ packageType === 'FULLTEAM' ? 'Full package' : 'Pro package'
96
+ const stripeLink =
97
+ packageType === 'FULLTEAM'
98
+ ? '//buy.stripe.com/8wM0290DO4l7enCdQQ'
99
+ : '//buy.stripe.com/fZebKR72c4l73IY8wx'
94
100
95
101
return (
96
102
< main className = "Team" >
@@ -126,13 +132,20 @@ const Team = ({ urlToken }) => {
126
132
</ ul >
127
133
</ div >
128
134
< p className = "Team-summary" >
129
- { totalSeats } -seat license:{ ' ' }
130
- { packageType === 'FULLTEAM' ? 'Full package' : 'Pro package' } . Add 5
131
- more seats{ ' ' }
132
- < a href = { `//paypal.me/graphqlguide/${ getPackage ( packageType ) . price } ` } >
133
- by PayPal
135
+ { `${ totalSeats } -seat license: ${ packageDisplayName } . Seats are non-transferable. Add
136
+ more seats ` }
137
+ < a href = { stripeLink } > via Stripe</ a >
138
+ { ' or ' }
139
+ < a
140
+ href = { `//paypal.me/graphqlguide/${
141
+ getPackage ( packageType ) . seatPrice
142
+ } `}
143
+ >
144
+ PayPal
134
145
</ a >
135
- . (Put your team name in the payment note.)
146
+ { `, and we’ll process it shortly. Or send a purchase order to ` }
147
+
148
+ { `, and we’ll send you an invoice.` }
136
149
</ p >
137
150
</ div >
138
151
</ main >
Original file line number Diff line number Diff line change @@ -69,6 +69,7 @@ const packages = [
69
69
name : 'Team license' ,
70
70
isGroup : true ,
71
71
price : 349 ,
72
+ seatPrice : 70 ,
72
73
includesTshirt : false ,
73
74
includesSlackAccess : false ,
74
75
} ,
@@ -78,6 +79,7 @@ const packages = [
78
79
name : 'Full team license' ,
79
80
isGroup : true ,
80
81
price : 1000 ,
82
+ seatPrice : 200 ,
81
83
includesTshirt : true ,
82
84
includesSlackAccess : true ,
83
85
} ,
You can’t perform that action at this time.
0 commit comments