import { redirect } from 'next/navigation'; import { getCurrentUser } from '@/lib/auth'; import DashboardLayout from '@/components/DashboardLayout'; import CalendrierPageContent from '@/components/CalendrierPageContent'; export default async function CalendrierPage() { const user = await getCurrentUser(); if (!user) { redirect('/login'); } return (

Calendrier

Gestion des trajets et planning des chauffeurs

); }