28 lines
864 B
TypeScript
28 lines
864 B
TypeScript
import { getCurrentUser } from '@/lib/auth';
|
|
import { hasPageAccess } from '@/lib/permissions';
|
|
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');
|
|
}
|
|
|
|
const hasAccess = await hasPageAccess(user.id, '/dashboard/archives');
|
|
if (!hasAccess) {
|
|
redirect('/dashboard/parametres');
|
|
}
|
|
|
|
return (
|
|
<DashboardLayout user={user}>
|
|
<div className="p-4 md:p-6 lg:p-8">
|
|
<h1 className="text-2xl md:text-3xl font-semibold text-cblack mb-2">Archives</h1>
|
|
<p className="text-xs md:text-sm text-cgray mb-6 md:mb-8">Trajets archivés</p>
|
|
<ArchivesTrajets />
|
|
</div>
|
|
</DashboardLayout>
|
|
);
|
|
}
|