import { View, Text, ScrollView, TouchableOpacity } from 'react-native' import { useRouter } from 'expo-router' const MENU_ITEMS = [ { icon: '🔌', label: 'Plugins' }, { icon: '🖥️', label: 'Servers' }, { icon: '👤', label: 'About You' }, { icon: '📻', label: 'Internet Radio' }, { icon: '🔄', label: 'Updates' }, { icon: '⚙️', label: 'Settings & Privacy' }, ] export default function AccountScreen() { const router = useRouter() return ( 👤 Welcome, User {MENU_ITEMS.map((item) => ( {item.icon} {item.label} ))} ) }