48 lines
1.3 KiB
TypeScript
48 lines
1.3 KiB
TypeScript
// Premium Mock Notification Data
|
|
export const INITIAL_NOTIFICATIONS = [
|
|
{
|
|
id: '1',
|
|
title: 'New Lead Assigned',
|
|
description: 'A new high-priority lead "Acme Corp Ltd" has been successfully assigned to you.',
|
|
time: '2 hours ago',
|
|
unread: true,
|
|
iconName: 'person-add-outline',
|
|
iconColor: '#3B82F6',
|
|
},
|
|
{
|
|
id: '2',
|
|
title: 'Invoice Payment Received',
|
|
description: 'Payment of $1,250.00 for Invoice #INV-1042 was received from Sarah Jenkins.',
|
|
time: '5 hours ago',
|
|
unread: true,
|
|
iconName: 'cash-outline',
|
|
iconColor: '#10B981',
|
|
},
|
|
{
|
|
id: '3',
|
|
title: 'Proposal View Alert',
|
|
description: 'Workspace admin viewed your custom proposal "Website Redesign Quote".',
|
|
time: '1 day ago',
|
|
unread: false,
|
|
iconName: 'eye-outline',
|
|
iconColor: '#8B5CF6',
|
|
},
|
|
{
|
|
id: '4',
|
|
title: 'Support Ticket #TCK-402',
|
|
description: 'Ticket resolved: "Cannot sign in to tenant workspace". Click to view details.',
|
|
time: '2 days ago',
|
|
unread: false,
|
|
iconName: 'alert-circle-outline',
|
|
iconColor: '#EF4444',
|
|
},
|
|
{
|
|
id: '5',
|
|
title: 'Task Deadline Nearing',
|
|
description: 'Your project task "Perform complete audit" is due in 3 hours.',
|
|
time: '3 days ago',
|
|
unread: false,
|
|
iconName: 'time-outline',
|
|
iconColor: '#F59E0B',
|
|
},
|
|
]; |