diff --git a/client/App.tsx b/client/App.tsx index c3cadd48..a0052d75 100644 --- a/client/App.tsx +++ b/client/App.tsx @@ -330,12 +330,21 @@ const App = () => ( {/* Staff routes */} } /> } /> - } /> - } /> + } + /> + } + /> } /> } /> } /> - } /> + } + /> {/* Dev-Link routes */} } /> diff --git a/client/pages/StaffAchievements.tsx b/client/pages/StaffAchievements.tsx index 94af47d0..272b77dc 100644 --- a/client/pages/StaffAchievements.tsx +++ b/client/pages/StaffAchievements.tsx @@ -2,12 +2,7 @@ import { useState } from "react"; import { useNavigate } from "react-router-dom"; import Layout from "@/components/Layout"; import { Button } from "@/components/ui/button"; -import { - Card, - CardContent, - CardHeader, - CardTitle, -} from "@/components/ui/card"; +import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; import { Badge } from "@/components/ui/badge"; import { Progress } from "@/components/ui/progress"; import { Trophy, Star, Target, ExternalLink } from "lucide-react"; @@ -89,7 +84,7 @@ const MILESTONES = [ export default function StaffAchievements() { const navigate = useNavigate(); const [expandedAchievement, setExpandedAchievement] = useState( - null + null, ); const unlockedCount = ACHIEVEMENTS.filter((a) => a.unlocked).length; @@ -102,7 +97,9 @@ export default function StaffAchievements() { {/* Header */}
-

Achievements

+

+ Achievements +

Track your progress and accomplishments @@ -176,7 +173,7 @@ export default function StaffAchievements() { setExpandedAchievement( expandedAchievement === achievement.id ? null - : achievement.id + : achievement.id, ) } > diff --git a/client/pages/StaffAdmin.tsx b/client/pages/StaffAdmin.tsx index ff2a6ef7..210a3834 100644 --- a/client/pages/StaffAdmin.tsx +++ b/client/pages/StaffAdmin.tsx @@ -170,7 +170,9 @@ export default function StaffAdmin() {

Owner

-

Full system access

+

+ Full system access +

2 members @@ -208,7 +210,9 @@ export default function StaffAdmin() {
- System Settings + + System Settings +
@@ -252,7 +256,9 @@ export default function StaffAdmin() {
-

Active Keys

+

+ Active Keys +

{apiKeys.map((key) => (
-

- Staff Chat -

+

Staff Chat

Internal team communication @@ -102,7 +95,9 @@ export default function StaffChat() { )}

-

#{channel.name}

+

+ #{channel.name} +

{channel.members} members

@@ -167,9 +162,7 @@ export default function StaffChat() { placeholder="Type a message..." value={message} onChange={(e) => setMessage(e.target.value)} - onKeyPress={(e) => - e.key === "Enter" && handleSend() - } + onKeyPress={(e) => e.key === "Enter" && handleSend()} className="bg-slate-800/50 border-purple-500/20 text-white placeholder:text-gray-500" />
-

{cred.value}

+

+ {cred.value} +

))}