8 lines
321 B
TypeScript
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>
|
|
);
|
|
}
|