-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: tweaks to plans to make more lovely (#9)
- some renaming - readme update for env - .gitignore for env - out of band tweaks to stipe config to add logo, brand colors, and fix a wrong product description License: MIT Signed-off-by: Oli Evans <[email protected]>
- Loading branch information
Showing
4 changed files
with
17 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
import Plans from '@/components/Plans' | ||
export default function PlansComponent () { | ||
import PricingTable from '@/components/PricingTable' | ||
|
||
export default function Plans () { | ||
return ( | ||
<div className='flex flex-col items-center'> | ||
<h1 className='text-4xl'>Plans</h1> | ||
<div className='py-8 flex flex-col items-center'> | ||
<h1 className='text-2xl font-mono mb-8 font-bold'>Plans</h1> | ||
<p className='mb-4'>Pick the price plan that works for you.</p> | ||
<p><b>Starter</b> is <u>free</u> for up to 5GiB.</p> | ||
<p><b>Lite</b> and <b>Business</b> plans unlock lower cost per GiB.</p> | ||
<div className='w-full overflow-x-scroll'> | ||
<Plans /> | ||
<PricingTable /> | ||
</div> | ||
</div> | ||
) | ||
} | ||
} |
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