import { View, ScrollView, Pressable } from 'react-native'; import { router } from 'expo-router'; import { Text } from '@/components/ui/text'; import { Card, CardContent } from '@/components/ui/card'; const MOCK_NOTIFICATIONS = [ { id: '1', title: 'Invoice reminder', body: 'Invoice #2 to Robin Murray is due in 2 days.', time: '2h ago', read: false }, { id: '2', title: 'Payment received', body: 'Payment of $500 received for Invoice #4.', time: '1d ago', read: true }, { id: '3', title: 'Proforma submission', body: 'Vendor A submitted a quote for Marketing Landing Page.', time: '2d ago', read: true }, ]; export default function NotificationsScreen() { return ( Notifications router.push('/notifications/settings')}> Settings {MOCK_NOTIFICATIONS.map((n) => ( {n.title} {n.body} {n.time} ))} ); }