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

8 lines
320 B
TypeScript

export default function InterviewsPage() {
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">Interviews</h1>
<p className="text-slate-600 text-sm">Schedule and monitor candidate evaluations.</p>
</div>
);
}