import React, { useState } from 'react'; import { View, ScrollView, Text, TouchableOpacity, StyleSheet, SafeAreaView, StatusBar, } from 'react-native'; import { Ionicons } from '@expo/vector-icons'; const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#f5f5f5', }, scrollContent: { paddingBottom: 20, }, heroSection: { backgroundColor: '#ffffff', padding: 20, borderBottomWidth: 1, borderBottomColor: '#e0e0e0', }, heroTitle: { fontSize: 28, fontWeight: '700', color: '#000', marginBottom: 10, }, heroSubtitle: { fontSize: 16, color: '#666', lineHeight: 24, marginBottom: 15, }, primaryButton: { backgroundColor: '#0066cc', paddingVertical: 12, paddingHorizontal: 20, borderRadius: 8, alignItems: 'center', }, primaryButtonText: { color: '#fff', fontSize: 16, fontWeight: '600', }, section: { marginTop: 20, paddingHorizontal: 15, }, sectionTitle: { fontSize: 20, fontWeight: '700', color: '#000', marginBottom: 12, }, sectionDescription: { fontSize: 14, color: '#666', lineHeight: 20, marginBottom: 12, }, cardContainer: { backgroundColor: '#fff', borderRadius: 12, padding: 16, marginBottom: 12, borderLeftWidth: 4, borderLeftColor: '#0066cc', }, cardTitle: { fontSize: 16, fontWeight: '600', color: '#000', marginBottom: 8, }, cardDescription: { fontSize: 13, color: '#666', lineHeight: 18, }, featureGrid: { flexDirection: 'row', flexWrap: 'wrap', justifyContent: 'space-between', }, featureCard: { width: '48%', backgroundColor: '#fff', borderRadius: 12, padding: 16, marginBottom: 12, alignItems: 'center', }, featureIcon: { fontSize: 32, marginBottom: 8, }, featureTitle: { fontSize: 14, fontWeight: '600', color: '#000', textAlign: 'center', }, ctaButton: { backgroundColor: '#0066cc', paddingVertical: 10, paddingHorizontal: 16, borderRadius: 6, marginTop: 8, }, ctaButtonText: { color: '#fff', fontSize: 13, fontWeight: '600', textAlign: 'center', }, }); export default function HomeScreen() { return ( {/* Hero Section */} You are more than a diagnosis. Connecting Through Stories, Thriving Through Community Join Our Community {/* Happy Mail Section */} 💌 Happy Mail Free Joy-Filled Snail Mail Nerisa sends personalized snail mail to folks navigating cancer and chronic illness. Who can receive: ✓ Cancer diagnosis or treatment{'\n'} ✓ Chronic illness or rare disease{'\n'} ✓ Medical limbo or recovery Order Happy Mail {/* Connect Section */} 🤝 Connect Safe & Supportive Space "We're here to create a safe, supportive space where you can connect with others, share your story, and find hope. Cancer and chronic illness can feel so isolating, but together, we're stronger." Learn More {/* Podcast Section */} 🎙️ Podcast More Than A Diagnosis Podcast Hosted by Jes and Den, who share real stories about life beyond the medical chart. Listen Now {/* Features Grid */} What We Offer 📚 Resources Curated support materials 👥 Community Support groups & circles 📖 Stories The Journal & experiences 🎁 Shop Purpose-driven apparel {/* Wings of Remembrance */} 🕊️ Wings of Remembrance Honor Those Who Shaped Us Share a tribute, memory, or reflection to honor those who shaped our journey. Share Your Tribute ); }