27 lines
675 B
TypeScript
27 lines
675 B
TypeScript
// app/admin/stats/page.tsx
|
|
import { getServerSession } from 'next-auth';
|
|
import { authOptions } from '@/lib/auth-options';
|
|
import { redirect } from 'next/navigation';
|
|
import StatsClient from '../stats-client';
|
|
|
|
export const dynamic = 'force-dynamic';
|
|
|
|
export default async function StatsPage() {
|
|
const session = await getServerSession(authOptions);
|
|
const role = (session as any)?.user?.role ?? null;
|
|
|
|
if (!session?.user) {
|
|
redirect('/login');
|
|
}
|
|
|
|
if (!(role === 'admin' || role === 'superadmin')) {
|
|
redirect('/dashboard');
|
|
}
|
|
|
|
return (
|
|
<div className="flex flex-col gap-6 py-4 md:gap-6 md:py-6 px-4 lg:px-16">
|
|
<StatsClient />
|
|
</div>
|
|
);
|
|
}
|