diff --git a/src/routes/index.tsx b/src/routes/index.tsx
index dba1b98..e96b3ec 100644
--- a/src/routes/index.tsx
+++ b/src/routes/index.tsx
@@ -173,6 +173,37 @@ function Dashboard() {
+ {/* Recent payments (moved to top) */}
+
+
+
+
+ Recent payments
+
+
+
+
+ {recentPayments.length === 0 && No payment requests yet.
}
+ {recentPayments.map((p) => (
+
+
+
{p.recipient_name}
+
+ {p.description || "Payment request"} ยท {formatDate(p.paid_at || p.created_at)}
+
+
+
+ {formatCurrency((p.total_amount_cents ?? 0) / 100)}
+ {p.status}
+
+
+ ))}
+
+
+
{/* Financial + My tasks */}