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'); }