chore(repo): initialize planarchy workspace

This commit is contained in:
2026-03-14 14:31:09 +01:00
commit dd55d0e78b
769 changed files with 166461 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import { StaffingPanel } from "~/components/staffing/StaffingPanel.js";
export default function StaffingPage() {
return (
<div className="p-6">
<div className="mb-6">
<h1 className="text-2xl font-bold text-gray-900">Staffing Suggestions</h1>
<p className="text-gray-500 text-sm mt-1">Find the best resource match for your project needs</p>
</div>
<StaffingPanel />
</div>
);
}