Files
biiproject-kit-v1/mobile/constants/mocks.ts
T

38 lines
1.8 KiB
TypeScript

export const MOCK_ARTICLES = [
{
id: 'A1',
title: 'How Transformers Work in Deep Learning',
author: 'Dr. Martin Shah',
category: 'LLM',
img: 'https://images.unsplash.com/photo-1677442136019-21780ecad995?auto=format&fit=crop&w=400&q=80',
},
{
id: 'A2',
title: 'AI Ethics in Modern Journalism',
author: 'Alex Wong',
category: 'Ethics',
img: 'https://images.unsplash.com/photo-1485827404703-89b55fcc595e?auto=format&fit=crop&w=400&q=80',
},
{
id: 'A3',
title: 'Medical Diagnosis with Computer Vision',
author: 'Sarah Lee',
category: 'Health',
img: 'https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=400&q=80',
},
];
export const MOCK_NOTIFICATIONS = [
{ id: '1', title: 'System Sync Complete', desc: 'All configurations have been updated successfully.', time: '2m ago', type: 'success' },
{ id: '2', title: 'Model Updated', desc: 'AI engine has been upgraded to the latest version.', time: '1h ago', type: 'update' },
{ id: '3', title: 'New Login Detected', desc: 'A new login was detected from a MacOS device.', time: '3h ago', type: 'alert' },
{ id: '4', title: 'Usage Report Ready', desc: 'Your weekly usage report is now available.', time: '1d ago', type: 'info' },
{ id: '5', title: 'Subscription Reminder', desc: 'Your plan renews in 3 days. Check payment details.', time: '2d ago', type: 'warning' },
];
export const MOCK_FAQS = [
{ id: '1', q: 'How to initiate a system sync?', a: 'Go to Dashboard and click the Sync System button at the top right.' },
{ id: '2', q: 'How to change security settings?', a: 'Visit Profile > Preferences to manage biometrics and passwords.' },
{ id: '3', q: 'Where to find API documentation?', a: 'Documentation can be accessed via the Help Center links.' },
];