forked from nextjs/saas-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Stripe changes to only one time payment(#98)
* added userProducts database table * teamsData replaced by userProducts * submit button disabled if product is bought * checkout success route adds userProduct * Update to use VERCEL_URL in stripe * Change base url logic * Updates in FAQ and pricing page --------- Co-authored-by: Rodrigo Elizeu Cherutti <[email protected]>
- Loading branch information
1 parent
2af2b3b
commit 57e3fb0
Showing
18 changed files
with
1,907 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -212,6 +212,11 @@ export default function HomePage() { | |
</h2> | ||
<div className="grid grid-cols-1 gap-8 lg:grid-cols-2 bg-orange-50"> | ||
{[ | ||
{ | ||
question: "How up-to-date is your question bank?", | ||
answer: | ||
"Our question bank is regularly updated to reflect the latest changes in Ontario Bar Exam content and format.", | ||
}, | ||
{ | ||
question: "How up-to-date is your question bank?", | ||
answer: | ||
|
@@ -228,21 +233,20 @@ export default function HomePage() { | |
"Our system tracks your performance across different topics and question types, providing detailed insights to help you improve.", | ||
}, | ||
{ | ||
question: | ||
"What is included in the 30-day money back guarantee?", | ||
question: "What payment methods do you accept?", | ||
answer: | ||
"With our 30-day money back guarantee, you can try BarQuest risk-free. If you're not satisfied within the first 30 days, simply send an email to [email protected] and we'll refund your order immediately, no questions asked.", | ||
"We accept all major credit cards, including Visa, MasterCard, American Express, and Discover. Payments are processed securely through Stripe.", | ||
}, | ||
{ | ||
question: "How do I cancel if I'm not satisfied?", | ||
question: | ||
"Can I take unlimited quizzes with my BarQuest purchase?", | ||
answer: | ||
"Canceling is easy! If you decide that BarQuest isn't the right fit for you in the first 30 days, simply send an email to [email protected] and we'll refund your order immediately, no questions asked.", | ||
"Absolutely! With your one-time BarQuest purchase, you have access to create and take as many quizzes as you want for a full 90 days. This unlimited access lets you thoroughly prepare and revisit questions to ensure you're exam-ready.", | ||
}, | ||
|
||
{ | ||
question: "What payment methods do you accept?", | ||
question: "How many questions are included with BarQuest?", | ||
answer: | ||
"We accept all major credit cards, including Visa, MasterCard, American Express, and Discover. Payments are processed securely through Stripe.", | ||
"BarQuest offers three comprehensive packages: Barrister (+500 questions), Solicitor (+600 questions), and Full (+1,000 questions). Each package includes detailed commentary and covers all relevant exam topics.", | ||
}, | ||
].map((item, index) => ( | ||
<div key={index} className="bg-white p-6 rounded-lg"> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.