import React from 'react'; import { View, Text, ScrollView, StyleSheet, SafeAreaView } from 'react-native'; const EPS = [ { show: 'The Long Game', title: 'Building in public', len: '52 min', emoji: '🎯', c: '#FB7185' }, { show: 'Deep Work Daily', title: 'Focus in a noisy world', len: '38 min', emoji: '🧠', c: '#818CF8' }, { show: 'Founders', title: 'The first ten hires', len: '1h 04m', emoji: '🚀', c: '#34D399' }, { show: 'Night Owl', title: 'Stories after dark', len: '44 min', emoji: '🌃', c: '#FBBF24' }, ]; export default function App() { return ( FOR YOU Listen now {EPS.map((e, i) => ( {e.emoji} {e.show} {e.title} ▶ {e.len} ))} 🎯 Building in public The Long Game ); } const s = StyleSheet.create({ safe: { flex: 1, backgroundColor: '#0E0A0C' }, scroll: { padding: 22, paddingTop: 60, paddingBottom: 20 }, kicker: { color: '#FB7185', fontSize: 12, fontWeight: '700', letterSpacing: 2 }, h1: { color: '#fff', fontSize: 32, fontWeight: '800', marginTop: 4, marginBottom: 18 }, row: { flexDirection: 'row', alignItems: 'center', marginBottom: 20 }, cover: { width: 72, height: 72, borderRadius: 18, alignItems: 'center', justifyContent: 'center' }, show: { color: '#A88', fontSize: 13, fontWeight: '600' }, title: { color: '#fff', fontSize: 17, fontWeight: '700', marginTop: 3 }, len: { color: '#FB7185', fontSize: 13, marginTop: 5 }, player: { flexDirection: 'row', alignItems: 'center', backgroundColor: '#1A1216', margin: 16, borderRadius: 18, padding: 14 }, pTitle: { color: '#fff', fontSize: 15, fontWeight: '700' }, pShow: { color: '#A88', fontSize: 13, marginTop: 2 }, pPlay: { fontSize: 26, color: '#fff' }, });