wulf-pulse/app/page.tsx

7 lines
170 B
TypeScript
Raw Normal View History

import { redirect } from 'next/navigation';
export default function Home() {
redirect('/dashboard');
return null; // This won't be reached but TypeScript needs it
}