-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdata.ts
336 lines (333 loc) · 7.68 KB
/
data.ts
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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
import { PillProps, CardProps } from "./pages";
export const message = "Psst... something is cooking!";
export const pills: Array<PillProps> = [
{
label: "Everything",
value: "",
},
{
label: "Blogs",
value: "blog",
},
{
label: "How-tos",
value: "how-to",
},
{
label: "Streams",
value: "stream",
},
{
label: "Events",
value: "event",
},
{
label: "Catch us",
value: "catch-us",
},
{
label: "Products",
value: "product",
},
];
export const cards: Array<CardProps> = [
{
title: "How is COVID treating you?",
description: `Seerat Parmar`,
date: 1596694211000,
new: false,
link: "https://medium.com/srmkzilla/how-is-covid-treating-you-d06e345d9746",
tags: ["blog"],
},
{
title: "Taiwan vs Coronavirus",
description: "Aditya Mukherjee",
date: 1595657411000,
new: false,
link: "https://medium.com/srmkzilla/taiwan-vs-coronavirus-41aa23e3f61a",
tags: ["blog"],
},
{
title: "Online Market Amidst Lockdown",
description: "Krishna Priya",
date: 1595484611000,
new: false,
link:
"https://medium.com/srmkzilla/online-market-amidst-lockdown-7dbb2f9e6da7",
tags: ["blog"],
},
{
title: "Using a Java Snippet from inside of Node.js",
description: "Aniruddha Chatterjee",
date: 1594188611000,
new: false,
link:
"https://medium.com/srmkzilla/using-a-java-snippet-from-inside-of-node-js-fe0366f48ee4",
tags: ["blog"],
},
{
title: "We write",
description: "Explore blogs",
date: 1594188511000,
new: false,
link: "https://medium.com/srmkzilla",
tags: ["blog"],
},
{
title: "Unlocking LinkedIn",
description:
"Presenting to you Unlocking LinkedIn, your gateway to a stupendous portfolio.",
date: 1596780611000,
new: false,
link: "https://youtu.be/S_xUuRrMAPQ",
tags: ["stream"],
},
{
title: "MozoDesign Chillouts",
description:
"Why don't you join us in making this quarantine period productive by learning some designing lessons?",
date: 1590041411000,
new: false,
link: "https://youtube.com/watch?v=YXa2QJ0hp1Q",
tags: ["stream"],
},
{
title: "Introduction to Node.js",
description: "Get started with Node.js",
date: 1559542211000,
new: false,
link: "https://youtu.be/FlKPJHY0SIQ",
tags: ["how-to"],
},
{
title: "Node.js Sessions",
description: "Learn the basics of Node.js",
date: 1559542211000,
new: false,
link:
"https://www.youtube.com/playlist?list=PLCo0moeBNij_fuTUCh7JmkIz0Ek5P8zxS",
tags: ["how-to"],
},
{
title: "Timelapse – Starbucks – MozoDesign",
description: "Illustrate the famous Starbucks cup",
date: 1558591811000,
new: false,
link: "https://youtu.be/7MZLGtKp27s",
tags: ["how-to"],
},
{
title: "MozoDesign",
description:
"Explore the series and craft something great with Adobe Illustrator",
date: 1558591811000,
new: false,
link:
"https://www.youtube.com/playlist?list=PLCo0moeBNij9Lldzj8VZNR6s5NCULmzkH",
tags: ["how-to"],
},
{
title: "Explore our events",
description: "Your gateway to all our events.",
date: 1558591611000,
new: false,
link: "https://events.srmkzilla.net",
tags: ["event"],
},
{
title: "Facebook",
description: "Find us on Facebook",
date: 1594795924000,
new: false,
link: "https://facebook.com/srmkzilla",
tags: ["catch-us"],
},
{
title: "Instagram",
description: "The official Instagram handle of SRMKZILLA",
date: 1594795924000,
new: false,
link: "https://instagram.com/srmkzilla",
tags: ["catch-us"],
},
{
title: "LinkedIn",
description: "Find us on LinkedIn",
date: 1594795924000,
new: false,
link: "https://linkedin.com/company/srmkzilla",
tags: ["catch-us"],
},
{
title: "YouTube",
description: "SRMKZILLA. Now on YouTube.",
date: 1594795924000,
new: false,
link: "https://youtube.com/c/SRMKZILLA",
tags: ["catch-us"],
},
{
title: "Twitter",
description: "The official Twitter handle of SRMKZILLA",
date: 1594795924000,
new: false,
link: "https://twitter.com/SRMKZILLA_Club",
tags: ["catch-us"],
},
{
title: "Medium",
description: "Monday musings by SRMKZILLA",
date: 1594795924000,
new: false,
link: "https://medium.com/srmkzilla",
tags: ["catch-us"],
},
{
title: "Your Express-way to Serverless APIs",
description:
"Part 1 — Serverless Architecture and AWS Lambdas // Gita Alekhya Paul",
date: 1597120200000,
new: false,
link:
"https://medium.com/srmkzilla/your-express-way-to-serverless-apis-5387194d6db",
tags: ["blog"],
},
{
title: "KZILLA.XYZ",
description: "Shorten the URL. Broaden the Reach.",
date: 1597170600000,
new: false,
link: "https://youtu.be/XPwWGZ_KnEE",
tags: ["product"],
},
{
title: "Mosaic",
description: "Hunt your hues. Directly from your browser.",
date: 1598034600000,
new: false,
link: "https://youtu.be/0UDs9BAwesQ",
tags: ["product"],
},
{
title: "BillBoard",
description: "Ink the link.",
date: 1610821800000,
new: false,
link: "kzilla.xyz/oSNsZ",
tags: ["product"],
},
{
title: "Springboard",
description: "Jumpstart your projects in record time.",
date: 1611945000000,
new: false,
link: "https://youtu.be/sxDqY1myzko",
tags: ["product"],
},
{
title: "React with US",
description:
"An ideal webinar for developers who want to delve into the React Native community and ignite their skills.",
date: 1601577000000,
new: false,
link: "https://youtu.be/sxDqY1myzko",
tags: ["stream"],
},
{
title: "Code - Decode",
description:
"Get a promising head start in your journey to become the next coding champion",
date: 1605724200000,
new: false,
link: "https://youtu.be/sxDqY1myzko",
tags: ["stream"],
},
{
title: "Tech-troduction Day - 1",
description:
"Learn the basics of frontend development to design a world of your choice.",
date: 1610908200000,
new: false,
link: " kzilla.xyz/komGZ",
tags: ["stream"],
},
{
title: "Tech-troduction Day - 2",
description: "Backend development holds everything together, grasp it here.",
date: 1610994600000,
new: false,
link: "kzilla.xyz/rBkyj",
tags: ["stream"],
},
{
title: "Tech-troduction Day - 3",
description: "Make everything around you smart with the basics of IoT.",
date: 1611081000000,
new: false,
link: "kzilla.xyz/JqMjj",
tags: ["stream"],
},
{
title: "Tech-troduction Day - 4",
description:
"Get introduced to the world of smart machines with the rudiments.",
date: 1611167400000,
new: false,
link: "kzilla.xyz/fHlRe",
tags: ["stream"],
},
{
title: "Tech-troduction Day - 5",
description:
"Make your foundations strong as you dip your toes in app development.",
date: 1611253800000,
new: false,
link: "kzilla.xyz/zvIGz",
tags: ["stream"],
},
{
title: "Tech-troduction Day - 6",
description:
"The best thing in the world is to enliven your imagination. Grab all the fundamentals of game development here. ",
date: 1611340200000,
new: false,
link: "kzilla.xyz/aINvN",
tags: ["stream"],
},
{
title: "Daughters Day",
description:
"A letter from us to all the daughters in the world. Keep rocking!",
date: 1601145000000,
new: false,
link: "kzilla.xyz/HEIIS",
tags: ["stream"],
},
{
title: "2020 Rewind",
description:
" Catch a glimpse of all the beautiful moments we were able to squeeze in 2020.",
date: 1609372800000,
new: false,
link: "kzilla.xyz/ijmVc",
tags: ["stream"],
},
{
title: "The Crux of Redux",
description: "A tool for managing data and UI states in JS // Krishna Priya",
date: 1612656000000,
new: false,
link: "kzilla.xyz/ksubC",
tags: ["stream"],
},
{
title: "Discord Channel",
description: "Join our crazzyyy channel.",
date: 1611446400000,
new: false,
link: "community.srmkzilla.net",
tags: ["stream"],
},
].sort((a, b) => {
return b.date - a.date;
});