Skip to content

Commit

Permalink
Add docs and stuff for cloud deployments release
Browse files Browse the repository at this point in the history
  • Loading branch information
255kb committed Jul 8, 2024
1 parent 674b591 commit 3c5134c
Show file tree
Hide file tree
Showing 35 changed files with 1,040 additions and 433 deletions.
10 changes: 7 additions & 3 deletions .env.development
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,13 @@ NEXT_PUBLIC_PADDLE_PLAN_TEAM_MONTHLY_PRICE_ID=pri_01h8ez018gcqaee9qb1e5dam81
NEXT_PUBLIC_PADDLE_PLAN_TEAM_YEARLY_PRICE_ID=pri_01h8ez0zh6f5c98f9q3pvgmtv9
NEXT_PUBLIC_PADDLE_PLAN_ENTERPRISE_MONTHLY_PRICE_ID=pri_01h8gra77xee2tsaaz9vatkj9k
NEXT_PUBLIC_PADDLE_PLAN_ENTERPRISE_YEARLY_PRICE_ID=pri_01h8gr7y27rp1mnxqzpt5cpvwx
NEXT_PUBLIC_PADDLE_PLAN_SOLO_MONTHLY_DISCOUNT=dsc_01hg7yfh21311s0rysd7rw8zw6
NEXT_PUBLIC_PADDLE_PLAN_SOLO_YEARLY_DISCOUNT=dsc_01hg7yjt95ny81yy681qz55w2z
NEXT_PUBLIC_DISCOUNT_TIME_LIMIT=1701201600000
NEXT_PUBLIC_DISCOUNT_TIME_LIMIT=0
NEXT_PUBLIC_PADDLE_PLAN_SOLO_MONTHLY_DISCOUNT=
NEXT_PUBLIC_PADDLE_PLAN_SOLO_YEARLY_DISCOUNT=
NEXT_PUBLIC_PADDLE_PLAN_TEAM_MONTHLY_DISCOUNT=
NEXT_PUBLIC_PADDLE_PLAN_TEAM_YEARLY_DISCOUNT=
NEXT_PUBLIC_PADDLE_PLAN_ENTERPRISE_MONTHLY_DISCOUNT=
NEXT_PUBLIC_PADDLE_PLAN_ENTERPRISE_YEARLY_DISCOUNT=
# only on dev
NEXT_PUBLIC_FIREBASE_AUTH_EMULATOR_HOST=http://127.0.0.1:9099
NODE_ENV=development
10 changes: 7 additions & 3 deletions .env.production
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ NEXT_PUBLIC_PADDLE_PLAN_TEAM_MONTHLY_PRICE_ID=pri_01h8gwsp95amj9z03hpeqxwyqm
NEXT_PUBLIC_PADDLE_PLAN_TEAM_YEARLY_PRICE_ID=pri_01h8gwt70w0hy5wmzrwaragy7t
NEXT_PUBLIC_PADDLE_PLAN_ENTERPRISE_MONTHLY_PRICE_ID=pri_01h8gwvc1s97zmkmpmrqet6y3a
NEXT_PUBLIC_PADDLE_PLAN_ENTERPRISE_YEARLY_PRICE_ID=pri_01h8gwvwwcy4hf6705jz6a863v
NEXT_PUBLIC_PADDLE_PLAN_SOLO_MONTHLY_DISCOUNT=dsc_01hg7xhs3b857pfgajwh67gr17
NEXT_PUBLIC_PADDLE_PLAN_SOLO_YEARLY_DISCOUNT=dsc_01hg7yrpewvmf7t8y94y66gx9f
NEXT_PUBLIC_DISCOUNT_TIME_LIMIT=1701201600000
NEXT_PUBLIC_DISCOUNT_TIME_LIMIT=0
NEXT_PUBLIC_PADDLE_PLAN_SOLO_MONTHLY_DISCOUNT=
NEXT_PUBLIC_PADDLE_PLAN_SOLO_YEARLY_DISCOUNT=
NEXT_PUBLIC_PADDLE_PLAN_TEAM_MONTHLY_DISCOUNT=
NEXT_PUBLIC_PADDLE_PLAN_TEAM_YEARLY_DISCOUNT=
NEXT_PUBLIC_PADDLE_PLAN_ENTERPRISE_MONTHLY_DISCOUNT=
NEXT_PUBLIC_PADDLE_PLAN_ENTERPRISE_YEARLY_DISCOUNT=
2 changes: 1 addition & 1 deletion components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ const Footer: FunctionComponent<{
</li>
<li className='mb-2'>
{/* Do not use <Link>, as routes with a dot inside get rewritten without trailing slash */}
<a href='/releases/8.2.0/' className='text-reset'>
<a href='/releases/8.3.0/' className='text-reset'>
Releases
</a>
</li>
Expand Down
2 changes: 1 addition & 1 deletion components/markdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ const Markdown: FunctionComponent<{
></SponsoringMessage>
);
} else {
return <Quote>{content.children}</Quote>;
return <Quote colorScheme='secondary'>{content.children}</Quote>;
}
},
h1: heading,
Expand Down
2 changes: 1 addition & 1 deletion components/nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ const Nav: FunctionComponent = function () {
Blog
</Link>
<a
href='/releases/8.2.0/'
href='/releases/8.3.0/'
className={`dropdown-item ${
router.pathname === '/releases' ||
router.pathname === '/releases/[version]'
Expand Down
Loading

0 comments on commit 3c5134c

Please sign in to comment.