From 56942275b8e40e18efa1cb3b2769f4a1114eedd8 Mon Sep 17 00:00:00 2001 From: zias Date: Sun, 29 Mar 2026 16:28:12 +0200 Subject: [PATCH] feat: add homepage selector --- apps/web/src/components/Header.tsx | 4 +- apps/web/src/routeTree.gen.ts | 21 ++ apps/web/src/routes/index.tsx | 326 +++++++++++++++++++++++++++-- apps/web/src/routes/open-mic.tsx | 24 +++ 4 files changed, 357 insertions(+), 18 deletions(-) create mode 100644 apps/web/src/routes/open-mic.tsx diff --git a/apps/web/src/components/Header.tsx b/apps/web/src/components/Header.tsx index 74ebed8..c571eb4 100644 --- a/apps/web/src/components/Header.tsx +++ b/apps/web/src/components/Header.tsx @@ -23,7 +23,7 @@ export function Header({ const handleSignOut = async () => { await authClient.signOut(); - navigate({ to: "/" }); + navigate({ to: "/open-mic" }); }; return ( @@ -35,7 +35,7 @@ export function Header({