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