28 lines
687 B
TypeScript
28 lines
687 B
TypeScript
|
|
import { redirect } from 'next/navigation';
|
||
|
|
import { getCurrentUser } from '@/lib/auth';
|
||
|
|
import DashboardLayout from '@/components/DashboardLayout';
|
||
|
|
import AdherentsTable from '@/components/AdherentsTable';
|
||
|
|
|
||
|
|
export default async function AdherentsPage() {
|
||
|
|
const user = await getCurrentUser();
|
||
|
|
|
||
|
|
if (!user) {
|
||
|
|
redirect('/login');
|
||
|
|
}
|
||
|
|
|
||
|
|
return (
|
||
|
|
<DashboardLayout user={user}>
|
||
|
|
<div className="p-6">
|
||
|
|
<h1 className="text-3xl font-semibold text-cblack mb-1">
|
||
|
|
Adhérents
|
||
|
|
</h1>
|
||
|
|
<p className="text-sm text-cgray mb-6">
|
||
|
|
Base de données des adhérents
|
||
|
|
</p>
|
||
|
|
|
||
|
|
<AdherentsTable />
|
||
|
|
</div>
|
||
|
|
</DashboardLayout>
|
||
|
|
);
|
||
|
|
}
|