Skip to content

Commit

Permalink
upd pages
Browse files Browse the repository at this point in the history
  • Loading branch information
JiangShuuu committed Dec 14, 2023
1 parent 89e534b commit e6732d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/pricing/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const Page = async () => {
quota: PLANS.find((p) => p.slug === 'pro')!.quota,
features: [
{
text: '25 pages per PDF',
text: `${PLANS.find((p) => p.slug === 'pro')!.pagesPerPdf} pages per PDF`,
footnote: 'The maximum amount of pages per PDF-file.'
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/config/stripe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const PLANS = [
{
name: 'Pro',
slug: 'pro',
quota: 50,
quota: 20,
pagesPerPdf: 50,
price: {
amount: 20,
Expand Down

0 comments on commit e6732d6

Please sign in to comment.