import { Stack } from 'expo-router'; import { useColorScheme } from 'react-native'; import { Colors } from '../../constants/Colors'; /** * Auth group layout * Provides stack navigation for authentication screens */ export default function AuthLayout() { const colorScheme = useColorScheme() ?? 'dark'; const colors = Colors[colorScheme]; return ( ); }