-
Notifications
You must be signed in to change notification settings - Fork 0
/
constants.js
107 lines (97 loc) · 2.71 KB
/
constants.js
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
export const TABS = {
BASIC_INFO: "BASIC_INFO",
WORK_EXPERIENCE: "WORK_EXPERIENCE",
PROJECTS: "PROJECTS",
EDUCATION: "EDUCATION",
ACHIEVEMENTS: "ACHIEVEMENTS",
SKILLS:'SKILLS',
OTHER: "OTHER",
LATEX:"LATEX",
}
export const sampleData = {
basicDetails: {
name: "John Doe",
title: "Frontend Developer",
linkedin_link: "https://www.linkedin.com/",
github_link: "https://github.com/",
other: "",
email: "[email protected]",
phone: "+111234567890",
},
WorkDetails: [
{
title: "SWE",
company_name: "Amazon",
location: "Remote",
start_date: "2001/02/05",
end_date: "2001/02/05",
description: "Lorem ipsum dolor sit amet,"
},
{
title: "SDE",
company_name: "Google",
location: "Remote",
start_date: "2001/02/05",
end_date: "2001/02/05",
description: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, "
}
],
educationDetails: [
{
name: "NITS",
level: "Btech",
area_of_study: "ECE",
start_date: "2001/02/05",
end_date: "2001/02/05",
result: "8 CGPA"
},
{
name: "DU",
level: "Bsc",
area_of_study: "Law",
start_date: "2001/02/05",
end_date: "2001/02/05",
result: "8 CGPA"
}
],
skillsDetails:[
{text:"django"}, {text:"python"}, {text:"c++"}
],
projectDetails: [
{
name:"Insta Clone",
description:"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor ",
tech_stack:"Mongo , NodeJS, ExpressJS, ReactJS",
start_date: "2001/02/05",
end_date: "2001/02/05",
link:"test"
},
{
name:"Insta Clone",
description:"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. ",
tech_stack:"Mongo , NodeJS, ExpressJS, ReactJS",
start_date: "2001/02/05",
end_date: "2001/02/05",
link:"test"
}
],
otherDetails: [
{
description:"Won CODE for Good in 2023",
},
{
description:"Gold Medalist in Btech "
}
]
}
export const TABS_SELECT_TEMPLATE = {
YOUR_RESUMES: '1',
TEMPLATES: '2'
}
export const COLORS = [
"#4f46e5", "#28b95f", "#991b1b", "#000000"
]
export const FONTS = [
"roboto", "openSans"
]
export const TEMPLATES =["Default"]