forked from coderplex-org/coderplex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmock-data.js
233 lines (230 loc) · 5.78 KB
/
mock-data.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
export const listOfSubjects = [
{
id: '2132',
title: 'Laravel',
domain: 'Web Development',
url: '/learn/laravel',
subjectId: 'laravel',
icon: 'devicon-laravel-plain colored',
learningCount: '20',
learnGuideStatus: true,
},
{
id: '213',
title: 'ReactJS',
domain: 'Web Development',
url: '/learn/reactjs',
subjectId: 'reactjs',
icon: 'devicon-react-original colored',
learningCount: '28',
learnGuideStatus: false,
},
{
id: '2131',
title: 'Go',
domain: 'Programming Language',
url: '/learn/go',
subjectId: 'go',
icon: 'devicon-go-plain colored',
learningCount: '7',
learnGuideStatus: false,
},
{
id: '21fa3',
title: 'Android',
domain: 'Mobile Technology',
url: '/learn/android',
subjectId: 'android',
icon: 'devicon-android-plain colored',
learningCount: '9',
learnGuideStatus: false,
},
{
id: '21afasda3',
title: 'Rails',
domain: 'Backend Development',
url: '/learn/rails',
subjectId: 'rails',
icon: 'devicon-rails-plain colored',
learningCount: '14',
learnGuideStatus: false,
},
{
id: '21wqerwqe3',
title: 'Python',
domain: 'Programming Language',
url: '/learn/python',
subjectId: 'python',
icon: 'devicon-python-plain colored',
learningCount: '32',
learnGuideStatus: false,
},
{
id: '2bxcvbx13',
title: 'iOS',
domain: 'Mobile Technology',
url: '/learn/ios',
subjectId: 'ios',
icon: 'devicon-swift-plain colored',
learningCount: '45',
learnGuideStatus: false,
},
{
id: '2bxczzxcvbx13',
title: 'Javascript',
domain: 'Programming Language',
url: '/learn/javascript',
subjectId: 'javascript',
icon: 'devicon-javascript-plain colored',
learningCount: '31',
learnGuideStatus: false,
},
{
id: '2bxdfasczzxcvbx13',
title: 'Angular',
domain: 'Frontend Development',
url: '/learn/angular',
subjectId: 'angular',
icon: 'devicon-angularjs-plain colored',
learningCount: '3',
learnGuideStatus: false,
},
];
export const indexPageLearns = [
{
link: 'https://github.com/coderplex/learn/blob/master/web-dev/Frontend/Libraries%20%26%20Frameworks/Learn-React.md',
title: 'ReactJS',
subject: 'Frontend Web Development',
image: '',
},
{
link: 'https://github.com/coderplex/learn/blob/master/web-dev/Backend/Learn-Laravel.md',
title: 'Laravel',
subject: 'Backend Web Development',
image: '',
},
{
link: 'https://github.com/coderplex/learn/blob/master/programming-languages/Go/learn-go.md',
title: 'Go',
subject: 'Programming Language',
image: '',
},
{
link: 'https://github.com/coderplex/learn/blob/master/computer-science/Learn-CS.md',
title: 'Introduction to C.S',
subject: 'Computer Science',
image: '',
},
{
link: 'https://github.com/coderplex/learn/blob/master/Blockchain/blockchain-basics.md',
title: 'Blockchain',
subject: 'Decentralized Systems',
image: '',
},
{
link: 'https://github.com/coderplex/learn/blob/master/mobile-dev/Android/learn-android.md',
title: 'Android',
subject: 'Mobile Development',
image: '',
},
];
export const listOfDomains = [
'All',
'Computer Science',
'Programming Language',
'Web Development',
'Mobile Technology',
'Data Science',
'Artificial Intelligence',
'BlockChain',
];
export const contentsOfLaravel = {
logo: 'devicon-laravel-plain colored',
overview: 'https://cdn.rawgit.com/coderplex/learn/cdn/cdn/laravel/overview.md',
guides: [
{
name: 'Prerequisites',
url: 'https://cdn.rawgit.com/coderplex/learn/cdn/cdn/laravel/guide/0.md',
},
{
name: 'Introduction to MVC architecture in PHP',
url: 'https://cdn.rawgit.com/coderplex/learn/cdn/cdn/laravel/guide/1.md',
},
{
name: 'Models Views Controllers and Routes',
url: 'https://cdn.rawgit.com/coderplex/learn/cdn/cdn/laravel/guide/2.md',
},
{
name: 'FrontEnd',
url: 'https://cdn.rawgit.com/coderplex/learn/cdn/cdn/laravel/guide/3.md',
},
{
name: 'Relationships',
url: 'https://cdn.rawgit.com/coderplex/learn/cdn/cdn/laravel/guide/4.md',
},
{
name: 'Authentication',
url: 'https://cdn.rawgit.com/coderplex/learn/cdn/cdn/laravel/guide/5.md',
},
{
name: 'View Composers and Archives',
url: 'https://cdn.rawgit.com/coderplex/learn/cdn/cdn/laravel/guide/6.md',
},
{
name: 'Testing & Seeding',
url: 'https://cdn.rawgit.com/coderplex/learn/cdn/cdn/laravel/guide/7.md',
},
{
name: 'Final Project',
url: 'https://cdn.rawgit.com/coderplex/learn/cdn/cdn/laravel/guide/8.md',
},
],
contributors: [
{
userName: 'P Bhanu Teja',
userPage: 'https://github.com/pbteja1998',
userImage: 'https://avatars0.githubusercontent.com/u/17903466?s=400&v=4',
contributions: [
{
type: 'topic',
count: '20',
},
{
type: 'article',
count: '30',
},
{
type: 'video',
count: '25',
},
],
},
{
userName: 'M Zubair Ahmed',
userPage: 'https://github.com/M-ZubairAhmed',
userImage:
'https://avatars0.githubusercontent.com/u/17708702?s=400&u=032075b378bf6d82da48725b9ce5f31c7a6469fa&v=4',
contributions: [
{
type: 'topic',
count: '2',
},
],
},
{
userName: 'Vinay Puppal',
userPage: 'https://www.vinaypuppal.com/',
userImage: 'https://s3-us-west-2.amazonaws.com/s.cdpn.io/214440/profile/profile-512.jpg?2',
contributions: [
{
type: 'topic',
count: '4',
},
{
type: 'article',
count: '2',
},
],
},
],
};