-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.ts
More file actions
76 lines (73 loc) · 1.67 KB
/
constants.ts
File metadata and controls
76 lines (73 loc) · 1.67 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import { Request, Student, Story, Category } from './types';
export const INITIAL_REQUESTS: Request[] = [
{
id: 1,
title: "Math tutoring for 8th grader",
category: Category.Education,
location: "Downtown",
status: 'Matched', // Pre-matched for the demo
matchedStudentId: 1
},
{
id: 2,
title: "Help setting up Wi-Fi router",
category: Category.Tech,
location: "Suburb",
status: 'Matched',
matchedStudentId: 2
},
{
id: 3,
title: "Grocery run for elderly neighbor",
category: Category.Errands,
location: "East Side",
status: 'Matched',
matchedStudentId: 3
}
];
export const MOCK_STUDENTS: Student[] = [
{
id: 1,
name: "Sarah Lee",
skills: ["Math", "Science"],
availability: "Weekends",
badges: ["10 Hours Volunteered"],
avatar: "https://picsum.photos/100/100?random=1"
},
{
id: 2,
name: "Jamal Khan",
skills: ["Tech Support", "Coding"],
availability: "Weeknights",
badges: ["5 Tasks Completed"],
avatar: "https://picsum.photos/100/100?random=2"
},
{
id: 3,
name: "Ana Torres",
skills: ["Cooking", "Errands"],
availability: "Flexible",
badges: ["Community Star"],
avatar: "https://picsum.photos/100/100?random=3"
}
];
export const STORIES: Story[] = [
{
id: 1,
content: "Sarah helped my son finally understand algebra!",
author: "Mrs. Robinson",
role: "Parent"
},
{
id: 2,
content: "Ana’s grocery run made my week easier.",
author: "Mr. Henderson",
role: "Neighbor"
},
{
id: 3,
content: "Jamal fixed our Wi-Fi in minutes. Lifesaver!",
author: "The Miller Family",
role: "Household"
}
];