feat: 3-click SSO registration - unified /auth page, Google/Apple/GitHub OAuth, email fallback, provider model

This commit is contained in:
root
2026-06-15 12:42:03 +02:00
parent 64ae34e9c9
commit d194e295ad
12 changed files with 1150 additions and 294 deletions
+5
View File
@@ -23,6 +23,11 @@ const navItems = [
export default function BottomNav() {
const pathname = usePathname();
// Hide bottom nav on auth pages
if (pathname.startsWith("/auth")) {
return null;
}
return (
<nav
className="fixed bottom-0 left-0 right-0 z-50 bg-[#0a0a0f]/95 backdrop-blur-md border-t border-gray-800/60 safe-area-bottom"