-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.ts
More file actions
52 lines (49 loc) · 1.45 KB
/
Copy pathconstants.ts
File metadata and controls
52 lines (49 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import { StudyGroup, User } from './types';
export const CURRENT_USER: User = {
id: 'u1',
name: 'Alex Rivera',
avatar: 'https://picsum.photos/seed/alex/200',
major: 'Computer Science',
bio: 'Passionate about algorithms and distributed systems. Looking for a group to prep for the GRE.'
};
export const INITIAL_GROUPS: StudyGroup[] = [
{
id: 'g1',
name: 'CS101: Data Structures',
subject: 'Computer Science',
description: 'Weekly review of stacks, queues, and linked lists. Beginners welcome!',
members: 8,
maxMembers: 12,
location: 'Main Library, Room 402',
meetingType: 'In-Person',
tags: ['CS', 'Coding', 'Freshman'],
schedule: 'Mondays @ 5:00 PM',
creatorId: 'u2'
},
{
id: 'g2',
name: 'Advanced Organic Chemistry',
subject: 'Chemistry',
description: 'Diving deep into reaction mechanisms and spectroscopy. High intensity!',
members: 4,
maxMembers: 6,
location: 'Zoom',
meetingType: 'Online',
tags: ['Pre-med', 'Chemistry', 'Hard'],
schedule: 'Tuesdays & Thursdays @ 7:00 PM',
creatorId: 'u3'
},
{
id: 'g3',
name: 'Intro to Philosophy: Ethics',
subject: 'Philosophy',
description: 'Discussing Kant, Mill, and Aristotle in a relaxed environment.',
members: 15,
maxMembers: 20,
location: 'The Coffee House',
meetingType: 'Hybrid',
tags: ['Humanities', 'Discussion', 'Ethics'],
schedule: 'Wednesdays @ 3:00 PM',
creatorId: 'u4'
}
];