-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.ts
More file actions
63 lines (61 loc) · 1.82 KB
/
constants.ts
File metadata and controls
63 lines (61 loc) · 1.82 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
import type { Professional, City } from './types';
export const DUMMY_DATA: Record<City, Professional[]> = {
'Hyderabad': [
{
id: '1',
fullName: 'Anjali Rao',
department: 'Director',
workSpecialty: 'Psychological Thrillers',
musicalTaste: 'Dark Ambient, Techno',
favoriteGenres: 'Neo-Noir, Mystery',
portfolioLink: 'https://youtube.com/anjalirao',
contactNumber: '9876543210',
currentStatus: 'Available',
notes: 'Looking for a DOP with low-light experience.'
},
{
id: '2',
fullName: 'Vikram Singh',
department: 'Cinematographer (DOP)',
workSpecialty: 'Handheld, Low-light',
musicalTaste: 'Hans Zimmer Scores, Classical',
favoriteGenres: 'Sci-Fi, Action',
portfolioLink: 'https://vimeo.com/vikramsingh',
contactNumber: '9876543211',
currentStatus: 'Open to Collabs',
notes: 'Owns a RED Komodo package.'
},
{
id: '3',
fullName: 'Priya Desai',
department: 'Music Director',
workSpecialty: 'Melody, Folk',
musicalTaste: 'Ilaiyaraaja Melodies, AR Rahman',
favoriteGenres: 'Family Drama, Romance',
portfolioLink: 'https://soundcloud.com/priyadesai',
contactNumber: '9876543212',
currentStatus: 'Busy',
notes: 'Not available until next month.'
}
],
'Chennai': [
{
id: '4',
fullName: 'Karthik Subramaniam',
department: 'Editor',
workSpecialty: 'Action, Fast-paced cuts',
musicalTaste: 'Rock, Electronic',
favoriteGenres: 'Action, Thriller',
portfolioLink: 'https://youtube.com/karthikcuts',
contactNumber: '8765432109',
currentStatus: 'Available',
notes: 'Expert in DaVinci Resolve.'
}
],
'Vizag': [],
'Bangalore': [],
'Kochi': [],
'Mumbai': [],
'Delhi': [],
'Kolkata': []
};