diff --git a/client/pages/staff/StaffTeamHandbook.tsx b/client/pages/staff/StaffTeamHandbook.tsx new file mode 100644 index 00000000..ff140779 --- /dev/null +++ b/client/pages/staff/StaffTeamHandbook.tsx @@ -0,0 +1,231 @@ +import Layout from "@/components/Layout"; +import SEO from "@/components/SEO"; +import { Button } from "@/components/ui/button"; +import { + Card, + CardContent, + CardDescription, + CardHeader, + CardTitle, +} from "@/components/ui/card"; +import { Badge } from "@/components/ui/badge"; +import { + Heart, + DollarSign, + Calendar, + MapPin, + Users, + Shield, + Zap, + Award, +} from "lucide-react"; + +interface HandbookSection { + id: string; + title: string; + icon: React.ReactNode; + content: string; + subsections: string[]; +} + +const sections: HandbookSection[] = [ + { + id: "1", + title: "Benefits & Compensation", + icon: , + content: "Comprehensive benefits package including health, dental, vision", + subsections: [ + "Health Insurance", + "Retirement Plans", + "Stock Options", + "Flexible PTO", + ], + }, + { + id: "2", + title: "Company Policies", + icon: , + content: "Core policies governing workplace conduct and expectations", + subsections: [ + "Code of Conduct", + "Harassment Policy", + "Confidentiality", + "Data Security", + ], + }, + { + id: "3", + title: "Time Off & Leave", + icon: , + content: "Vacation, sick leave, parental leave, and special circumstances", + subsections: [ + "Paid Time Off", + "Sick Leave", + "Parental Leave", + "Sabbatical", + ], + }, + { + id: "4", + title: "Remote Work & Flexibility", + icon: , + content: "Work from home policies, office hours, and location flexibility", + subsections: [ + "WFH Policy", + "Core Hours", + "Office Access", + "Equipment", + ], + }, + { + id: "5", + title: "Professional Development", + icon: , + content: "Learning opportunities, training budgets, and career growth", + subsections: [ + "Training Budget", + "Conference Attendance", + "Internal Training", + "Mentorship", + ], + }, + { + id: "6", + title: "Recognition & Awards", + icon: , + content: "Employee recognition programs and performance incentives", + subsections: [ + "Spot Bonuses", + "Team Awards", + "Anniversary Recognition", + "Excellence Awards", + ], + }, +]; + +export default function StaffTeamHandbook() { + return ( + + + +
+ {/* Background effects */} +
+
+
+
+ +
+ {/* Header */} +
+
+
+ +
+
+

+ Team Handbook +

+

+ Benefits, policies, and team culture +

+
+
+ + {/* Quick Stats */} +
+ + +

25

+

Days PTO

+
+
+ + +

100%

+

Health Coverage

+
+
+ + +

$5K

+

Learning Budget

+
+
+ + +

Flexible

+

Remote Work

+
+
+
+ + {/* Handbook Sections */} +
+ {sections.map((section) => ( + + +
+
+
+ {section.icon} +
+
+ + {section.title} + + + {section.content} + +
+
+
+
+ +
+ {section.subsections.map((subsection) => ( + + {subsection} + + ))} +
+ +
+
+ ))} +
+ + {/* Additional Resources */} +
+

+ Have Questions? +

+

+ HR team is here to help with any handbook-related questions or + to clarify company policies. +

+ +
+
+
+
+ + ); +}