// Landing / Login screen. // // Milestone 1 TODO: // - Show app logo + "Enter your email" field. // - On submit, call shared/auth requestMagicLink(email). // - Handle deep link return in app/_layout.tsx (or a dedicated auth callback route). import { StyleSheet, Text, View } from 'react-native'; export default function Landing() { return ( ChatApp Login placeholder — magic link flow goes here. ); } const styles = StyleSheet.create({ container: { flex: 1, alignItems: 'center', justifyContent: 'center', backgroundColor: '#0b0b0f', padding: 24, }, title: { color: '#fff', fontSize: 28, fontWeight: '600' }, subtitle: { color: '#9ca3af', marginTop: 8, textAlign: 'center' }, });