-
-
Notifications
You must be signed in to change notification settings - Fork 5.8k
/
Copy pathsidebars.js
executable file
·68 lines (68 loc) · 1.91 KB
/
sidebars.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
module.exports = {
root: [
'introduction',
{
type: 'category',
label: 'Trivia questions',
items: [
'trivia',
'javascript-questions',
'css-questions',
'html-questions',
],
},
{
type: 'category',
label: 'Coding interview',
collapsed: false,
link: {
type: 'generated-index',
title: 'Coding round',
description:
'Various type of coding questions for front end interviews!',
slug: '/coding',
},
items: [
'javascript-utility-function',
'build-front-end-user-interfaces',
'algorithms',
],
},
{
type: 'category',
label: 'System design interview',
collapsed: false,
items: [
'front-end-system-design',
'front-end-system-design-ui-components',
'front-end-system-design-applications',
],
},
'behavioral',
'resume',
{
type: 'category',
label: 'Interview questions 🔥',
collapsed: false,
link: {
type: 'generated-index',
title: 'Company interview questions',
slug: '/company-interview-questions',
},
items: [
'companies/google-front-end-interview-questions',
'companies/amazon-front-end-interview-questions',
'companies/microsoft-front-end-interview-questions',
'companies/apple-front-end-interview-questions',
'companies/airbnb-front-end-interview-questions',
'companies/bytedance-tiktok-front-end-interview-questions',
'companies/dropbox-front-end-interview-questions',
'companies/linkedin-front-end-interview-questions',
'companies/lyft-front-end-interview-questions',
'companies/salesforce-front-end-interview-questions',
'companies/twitter-front-end-interview-questions',
'companies/uber-front-end-interview-questions',
],
},
],
};