diff --git a/web/components/profile-menu.tsx b/web/components/profile-menu.tsx index d1a42cd8..7cc00e6a 100644 --- a/web/components/profile-menu.tsx +++ b/web/components/profile-menu.tsx @@ -54,6 +54,10 @@ function getNavigationOptions( name: 'Your trades', href: '/trades', }, + { + name: 'Add funds', + href: '/add-funds', + }, { name: 'Leaderboards', href: '/leaderboards', diff --git a/web/pages/add-funds.tsx b/web/pages/add-funds.tsx index dcf65088..2ecf6317 100644 --- a/web/pages/add-funds.tsx +++ b/web/pages/add-funds.tsx @@ -19,11 +19,11 @@ export default function AddFundsPage() { - - + <Col className="bg-white rounded sm:shadow-md p-4 py-8 sm:p-8 h-full"> + <Title className="!mt-0" text="Get Manifold Dollars" /> <img - className="mt-6 block" - src="/praying-mantis-light.svg" + className="mb-6 block self-center -scale-x-100" + src="/stylized-crane-black.png" width={200} height={200} /> @@ -50,7 +50,7 @@ export default function AddFundsPage() { <form action={checkoutURL(user?.id || '', amountSelected)} method="POST" - className="mt-12" + className="mt-8" > <button type="submit" diff --git a/web/public/stylized-crane-black.png b/web/public/stylized-crane-black.png new file mode 100644 index 00000000..4bdf2bc6 Binary files /dev/null and b/web/public/stylized-crane-black.png differ