9 lines
285 B
TypeScript
9 lines
285 B
TypeScript
import { redirect } from 'next/navigation';
|
|
|
|
export const dynamic = 'force-dynamic';
|
|
|
|
export default function SponsorPage() {
|
|
// Redirect to dashboard - this will be handled by middleware for auth
|
|
// Using permanent redirect to avoid cookie loss
|
|
redirect('/sponsor/dashboard');
|
|
} |