Skip to content

Commit 0023ce7

Browse files
committed
feat: add Manage Escrow link to escrow dashboard
1 parent ea339bd commit 0023ce7

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

src/app/escrow/page.tsx

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -132,12 +132,20 @@ export default function EscrowDashboardPage() {
132132
Manage crypto escrows for jobs and gigs
133133
</p>
134134
</div>
135-
<Link
136-
href="/escrow/create"
137-
className="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg font-medium transition-colors"
138-
>
139-
New Escrow
140-
</Link>
135+
<div className="flex gap-3">
136+
<Link
137+
href="/escrow/manage"
138+
className="border border-blue-600 text-blue-600 hover:bg-blue-50 dark:hover:bg-blue-900/20 px-4 py-2 rounded-lg font-medium transition-colors"
139+
>
140+
Manage Escrow
141+
</Link>
142+
<Link
143+
href="/escrow/create"
144+
className="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg font-medium transition-colors"
145+
>
146+
New Escrow
147+
</Link>
148+
</div>
141149
</div>
142150

143151
{/* Filters */}

0 commit comments

Comments
 (0)