Skip to content

Commit

Permalink
[web] Add 'receive' and 'send' icons
Browse files Browse the repository at this point in the history
  • Loading branch information
dnjooiopa committed May 4, 2024
1 parent 14c5490 commit 5b09c8e
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions web/src/app/(auth)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import Link from 'next/link'
import Balance from '@/components/Balance'
import Transactions from '@/components/Transactions'
import Button from '@/components/base/Button'
import { RiSendPlaneFill } from 'react-icons/ri'

const Page = () => {
const { get } = cookies()
Expand All @@ -21,10 +22,16 @@ const Page = () => {
<Balance />
<div className="flex mt-4 gap-4 justify-center">
<Link href="/receive">
<Button className="w-[128px]">Receive</Button>
<Button className="w-[128px] flex justify-center gap-2">
<RiSendPlaneFill className={`text-2xl text-gray-100 rotate-90`} />
<span>Receive</span>
</Button>
</Link>
<Link href="/send">
<Button className="w-[128px]">Send</Button>
<Button className="w-[128px] flex justify-center gap-1">
<RiSendPlaneFill className={`text-2xl text-gray-100`} />
<span>Send</span>
</Button>
</Link>
</div>
<div className="mt-4" />
Expand Down

0 comments on commit 5b09c8e

Please sign in to comment.