import { View, ScrollView, Pressable } from "react-native"; import { useSirouRouter } from "@sirou/react-native"; import { AppRoutes } from "@/lib/routes"; import { Text } from "@/components/ui/text"; import { Card, CardContent } from "@/components/ui/card"; import { Bell, Settings, ChevronRight } from "@/lib/icons"; 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() { const nav = useSirouRouter(); return ( Notifications nav.go("notifications/settings")} > Settings {MOCK_NOTIFICATIONS.map((n) => ( {n.title} {n.body} {n.time} ))} ); }