diff --git a/src/app/issues/page.tsx b/src/app/issues/page.tsx index ed1e81d..739adfd 100644 --- a/src/app/issues/page.tsx +++ b/src/app/issues/page.tsx @@ -1,6 +1,10 @@ +import Link from "next/link"; +import { Inbox } from "lucide-react"; import { fetchBounties } from "@/lib/api"; import { mockBounties } from "@/lib/mock-data"; import { BountyCard } from "@/components/bounty/BountyCard"; +import { EmptyState } from "@/components/ui/EmptyState"; +import { Button } from "@/components/ui/Button"; export const metadata = { title: "Paid Issues | MergeFi", @@ -24,11 +28,27 @@ export default async function IssuesPage() { moment it's merged.

-
- {bounties.map((bounty) => ( - - ))} -
+ {bounties.length > 0 ? ( +
+ {bounties.map((bounty) => ( + + ))} +
+ ) : ( + + + + } + /> + )} ); } +