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

Archives

Trajets archivés

); }