22 lines
631 B
TypeScript
22 lines
631 B
TypeScript
|
|
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 (
|
||
|
|
<DashboardLayout user={user}>
|
||
|
|
<div className="p-8">
|
||
|
|
<h1 className="text-3xl font-semibold text-cblack mb-2">Archives</h1>
|
||
|
|
<p className="text-sm text-cgray mb-8">Trajets archivés</p>
|
||
|
|
<ArchivesTrajets />
|
||
|
|
</div>
|
||
|
|
</DashboardLayout>
|
||
|
|
);
|
||
|
|
}
|