import { View, ScrollView, Pressable } from 'react-native'; import { router } from 'expo-router'; import { Text } from '@/components/ui/text'; import { Button } from '@/components/ui/button'; import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card'; import { MOCK_USER } from '@/lib/mock-data'; import { User, Mail, Globe, Bell, ChevronRight, Info, LogOut, LogIn, FileText, FolderOpen, Settings } from '@/lib/icons'; const PRIMARY = '#ea580c'; export default function ProfileScreen() { return ( {MOCK_USER.name[0]} {MOCK_USER.name} {MOCK_USER.email} Account Email {MOCK_USER.email} Language English router.push('/notifications')} className="flex-row items-center justify-between border-b border-border py-3" > Notifications Manage router.push('/reports')} className="flex-row items-center justify-between border-b border-border py-3" > Reports router.push('/documents')} className="flex-row items-center justify-between border-b border-border py-3" > Documents router.push('/settings')} className="flex-row items-center justify-between py-3" > Settings About Yaltopia Tickets App — Scan. Send. Reconcile. Companion to the Yaltopia Tickets web app. ); }