Add funds menu option, and Add funds page

This commit is contained in:
James Grugett 2022-02-28 17:32:43 -08:00
parent 445e90f2b9
commit 71faee584c
3 changed files with 9 additions and 5 deletions

View File

@ -54,6 +54,10 @@ function getNavigationOptions(
name: 'Your trades', name: 'Your trades',
href: '/trades', href: '/trades',
}, },
{
name: 'Add funds',
href: '/add-funds',
},
{ {
name: 'Leaderboards', name: 'Leaderboards',
href: '/leaderboards', href: '/leaderboards',

View File

@ -19,11 +19,11 @@ export default function AddFundsPage() {
<SEO title="Add funds" description="Add funds" url="/add-funds" /> <SEO title="Add funds" description="Add funds" url="/add-funds" />
<Col className="items-center"> <Col className="items-center">
<Col> <Col className="bg-white rounded sm:shadow-md p-4 py-8 sm:p-8 h-full">
<Title text="Get Manifold Dollars" /> <Title className="!mt-0" text="Get Manifold Dollars" />
<img <img
className="mt-6 block" className="mb-6 block self-center -scale-x-100"
src="/praying-mantis-light.svg" src="/stylized-crane-black.png"
width={200} width={200}
height={200} height={200}
/> />
@ -50,7 +50,7 @@ export default function AddFundsPage() {
<form <form
action={checkoutURL(user?.id || '', amountSelected)} action={checkoutURL(user?.id || '', amountSelected)}
method="POST" method="POST"
className="mt-12" className="mt-8"
> >
<button <button
type="submit" type="submit"

Binary file not shown.

After

Width:  |  Height:  |  Size: 683 KiB