diff --git a/client/pages/dashboards/StaffDashboard.tsx b/client/pages/dashboards/StaffDashboard.tsx new file mode 100644 index 00000000..9e59e6da --- /dev/null +++ b/client/pages/dashboards/StaffDashboard.tsx @@ -0,0 +1,102 @@ +import Layout from "@/components/Layout"; +import { Button } from "@/components/ui/button"; +import { Card, CardContent } from "@/components/ui/card"; +import { Shield, ArrowRight, FileText, MessageSquare, Zap } from "lucide-react"; + +export default function StaffDashboard() { + return ( + +
+
+ {/* Header */} +
+
+
+
+ +
+
+

+ STAFF Employee Portal +

+

+ This is the future A-Corp internal dashboard for OKRs, benefits, and HR tools. +

+
+ + {/* Coming Soon Card */} + + + {/* Status */} +
+
+

Coming Soon

+
+

+ The full bespoke STAFF dashboard with OKR tracking, benefits management, and HR tools is currently in development per our Phase 3 Roadmap. +

+
+ + {/* Guiding CTA */} +
+
+

+ + Access Internal Resources +

+

+ All A-Corp SOPs, Handbooks, and Benefit Guides are located in our Internal Doc Hub. All team chat happens in our private Slack. +

+
+
+ + +
+
+
+
+ + {/* Features Coming */} +
+ + +

🎯

+

OKRs & Goals

+

Track quarterly objectives

+
+
+ + +

💰

+

Benefits & Payroll

+

Manage compensation & benefits

+
+
+ + +

📚

+

Company Resources

+

SOPs, handbooks & guides

+
+
+
+
+
+
+
+ ); +}