import { TeamReviewService } from "@/services/team-review-service"; import { AuthService } from "@/services/auth-service"; import { redirect } from "next/navigation"; import { TeamOverview } from "@/components/team-review/team-overview"; import { SkillMatrix } from "@/components/team-review/skill-matrix"; import { TeamInsights } from "@/components/team-review/team-insights"; import { MentorshipSection } from "@/components/team-review/mentorship-section"; import { LearningSection } from "@/components/team-review/learning-section"; import { TeamStats } from "@/components/team-review/team-stats"; import { Users } from "lucide-react"; export const dynamic = "force-dynamic"; async function TeamReviewPage() { try { const { userProfile } = await AuthService.requireAuthenticatedUser(); const teamData = await TeamReviewService.getTeamReviewData( userProfile.teamId ); return (
Vue d'ensemble et analyse des compétences de l'équipe{" "} {teamData.team.direction}