semillero-2-AI-ATS/app/(dashboard)/candidates/page.tsx
2026-06-08 11:26:56 -04:00

8 lines
321 B
TypeScript

export default function CandidatesPage() {
return (
<div className="bg-white p-6 rounded-lg shadow-sm border border-slate-200">
<h1 className="text-xl font-bold text-slate-900 mb-2">Candidates</h1>
<p className="text-slate-600 text-sm">View and evaluate parsed candidate profiles.</p>
</div>
);
}