import { useColor } from '@/hooks/useColor'; import { Stack } from 'expo-router'; /** * Without this the group opens on whichever route sorts first — * `email-link` — because there is no `index.tsx` here. Every screen is a named * route on purpose, so that the password-recovery link can deep-link straight * to `/reset-password`. */ export const unstable_settings = { initialRouteName: 'sign-in', }; export default function AuthLayout() { const text = useColor('text'); const background = useColor('background'); return ( {/* Firebase calls it email link sign-in; "magic link" is Supabase's word for the same thing. There is no `verify-otp` sibling because Firebase Authentication has no email OTP at all — see the README. */} ); }