import React from 'react'; import {StyleSheet, View} from 'react-native'; import {Button, Text, Surface} from 'react-native-paper'; import type {HomeScreenProps} from '../types/navigation'; import {DTColors} from '../theme'; export function HomeScreen({navigation}: HomeScreenProps) { return ( DANGEROUS THINGS NFC IDENTIFIER Scan any NFC transponder to find compatible Dangerous Things implants. dngr.us ); } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: DTColors.dark, padding: 24, }, header: { alignItems: 'center', paddingTop: 60, paddingBottom: 40, backgroundColor: 'transparent', }, title: { color: DTColors.modeNormal, fontWeight: '700', letterSpacing: 2, }, subtitle: { color: DTColors.modeEmphasis, marginTop: 8, letterSpacing: 4, }, content: { flex: 1, justifyContent: 'center', alignItems: 'center', }, description: { color: DTColors.light, textAlign: 'center', marginBottom: 48, opacity: 0.9, paddingHorizontal: 20, }, scanButton: { borderColor: DTColors.modeNormal, borderWidth: 2, borderRadius: 4, }, scanButtonLabel: { color: DTColors.modeNormal, fontSize: 18, fontWeight: '600', letterSpacing: 2, }, scanButtonContent: { paddingVertical: 12, paddingHorizontal: 32, }, footer: { alignItems: 'center', paddingBottom: 20, }, footerText: { color: DTColors.modeNormal, opacity: 0.6, }, });