import { Image, StyleSheet, Platform } from 'react-native'; import ParallaxScrollView from '@/components/default/ParallaxScrollView'; import { ThemedText, ThemedView } from '@/components/theme/Theme'; const HomeScreen = () => { return ( } headerTitle={ Tech Tracker } > ); }; export default HomeScreen; const styles = StyleSheet.create({ titleContainer: { flexDirection: 'row', alignItems: 'center', gap: 8, }, stepContainer: { gap: 8, marginBottom: 8, }, reactLogo: { height: 70, width: 72, bottom: 10, left: 40, position: 'absolute', }, headerTitle: { position: 'absolute', bottom: 20, left: 75, right: 0, textAlign: 'center', fontSize: 48, lineHeight: 64, fontWeight: 'bold', }, });