Update src/app/admin-dashboard/page.tsx

This commit is contained in:
2026-03-25 22:20:57 +00:00
parent 9f59eaeb81
commit 6346b6309a

View File

@@ -117,6 +117,10 @@ export default function AdminDashboardPage() {
Manage applicants, view documents, and track payment statuses.
</p>
<h2 className="mb-4 text-3xl font-bold tracking-tight lg:text-4xl">Applicant Overview</h2>
<p className="mb-8 text-lg text-gray-600 dark:text-gray-400">
Browse and filter applicants by name or payment status.
</p>
<ProductCatalog
layout="page"
products={filteredApplicants}
@@ -131,8 +135,6 @@ export default function AdminDashboardPage() {
},
]}
emptyMessage="No applicants found matching your criteria."
title="Applicant Overview"
description="Browse and filter applicants by name or payment status."
className="pb-10" // Add some padding to the bottom
/>
</div>