feat: Add dedicated login and logout routes, refactor Supabase environment variables, and update registration form UI.

This commit is contained in:
Jrodenas
2026-03-15 17:32:55 +01:00
parent 0b50638583
commit 63506d620f
7 changed files with 100 additions and 26 deletions

5
src/routes/logout.tsx Normal file
View File

@@ -0,0 +1,5 @@
import { createFileRoute } from "@tanstack/react-router"
export const Route = createFileRoute("/logout")({
beforeLoad: async ({ context }) => {}
})