routes: redirect root to /teams/explore

This commit is contained in:
Justin Edmund 2025-11-30 23:16:07 -08:00
parent d412e760ab
commit 07f57d20fb

View file

@ -0,0 +1,6 @@
import { redirect } from '@sveltejs/kit'
import type { PageServerLoad } from './$types'
export const load: PageServerLoad = async () => {
redirect(302, '/teams/explore')
}