-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update pricing for Fall 2024 #84
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
src/pages/pricing/index.tsx
Outdated
<Row> | ||
<Col xs={12} md={6}> | ||
<Form.Group controlId="term-system"> | ||
<Form.Label>Term system</Form.Label> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this the right term (heh) to use here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"Term system" is a correct terminology. We could also consider "academic schedule"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I prefer "academic schedule", but I agree that "term system" is correct as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changed to "academic calendar" in 7129fb5.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
err, no I didn't 😅 let me change it again.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done for real in 56ec012.
src/pages/pricing/index.tsx
Outdated
let basicPrice = run(() => { | ||
if (termSystem === "semester") { | ||
return 8; | ||
} else if (termSystem === "quarter") { | ||
return 6; | ||
} else { | ||
return 2; | ||
} | ||
}); | ||
|
||
let premiumPrice = basicPrice * 2; | ||
|
||
if (paymentModel === "student") { | ||
basicPrice += 2; | ||
premiumPrice += 2; | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Check my math please!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks good to me!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Likewise!
No description provided.