Files
gridpilot.gg/apps/website/app/sponsor/page.tsx
2026-01-04 01:45:14 +01:00

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