import { Pressable, StyleSheet, Text, View } from 'react-native' import { useRouter } from 'expo-router' import { StatusBar } from 'expo-status-bar' import { useSafeAreaInsets } from 'react-native-safe-area-context' export default function HomeScreen() { const router = useRouter() const insets = useSafeAreaInsets() return ( TABATAGO EntraƮnement Tabata [ styles.startButton, pressed && styles.startButtonPressed, ]} onPress={() => router.push('/timer')} > START ) } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#1E1E2E', alignItems: 'center', justifyContent: 'center', gap: 12, }, title: { fontSize: 44, fontWeight: '900', color: '#FFFFFF', letterSpacing: 6, }, subtitle: { fontSize: 18, color: 'rgba(255, 255, 255, 0.6)', fontWeight: '500', }, startButton: { width: 160, height: 160, borderRadius: 80, backgroundColor: '#F97316', alignItems: 'center', justifyContent: 'center', marginTop: 60, }, startButtonPressed: { opacity: 0.7, }, startButtonText: { fontSize: 32, fontWeight: '900', color: '#FFFFFF', letterSpacing: 4, }, })