import { useColor } from '@/hooks/useColor'; import { Stack } from 'expo-router'; /** * Without this the group opens on whichever route sorts first — * `forgot-password` — because there is no `index.tsx` here. Every screen is a * named route on purpose, so that the password-recovery email 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 ( ); }