feat: Implement mobile application and lead processing utilities.

This commit is contained in:
2026-02-19 14:21:51 +01:00
parent fca42db4d2
commit c53a71a5f9
120 changed files with 24080 additions and 851 deletions

View File

@@ -3,5 +3,8 @@ import { useAuthStore } from '@/store/auth.store'
export default function Index() {
const session = useAuthStore((s) => s.session)
return <Redirect href={session ? '/(app)/news' : '/(auth)/login'} />
if (session) {
return <Redirect href={'/(app)/home' as never} />
}
return <Redirect href="/(auth)/login" />
}