Skip to content

Commit 1ef5752

Browse files
committed
feat(data): add mock data for development
1 parent 100856f commit 1ef5752

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

src/data/mockData.ts

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// Mock user data for development
2+
export const mockUser = {
3+
uid: 'mock-user-001',
4+
displayName: 'Mai Tran Thien Tam',
5+
email: 'tam@dhv.edu.vn',
6+
photoURL: '/img/team-1.jpg',
7+
role: 'student' as const,
8+
};
9+
10+
export const mockDashboardStats = {
11+
coursesEnrolled: 5,
12+
coursesCompleted: 3,
13+
certificatesEarned: 3,
14+
hoursLearned: 156,
15+
currentStreak: 12,
16+
assignmentsPending: 2,
17+
meetingsScheduled: 1,
18+
averageScore: 87,
19+
};
20+
21+
export const mockRecentActivity = [
22+
{ id: 1, type: 'lesson', title: 'Completed: React Hooks Deep Dive', time: '2 hours ago', icon: 'book' },
23+
{ id: 2, type: 'assignment', title: 'Submitted: Todo App Project', time: '5 hours ago', icon: 'code' },
24+
{ id: 3, type: 'certificate', title: 'Earned: JavaScript Fundamentals', time: '1 day ago', icon: 'award' },
25+
{ id: 4, type: 'meeting', title: 'Meeting with Mentor Nguyen Van Minh', time: '2 days ago', icon: 'video' },
26+
{ id: 5, type: 'course', title: 'Started: TypeScript Advanced Patterns', time: '3 days ago', icon: 'play' },
27+
];

0 commit comments

Comments
 (0)