-
Notifications
You must be signed in to change notification settings - Fork 48
/
homepage-categories.js
75 lines (74 loc) · 2.59 KB
/
homepage-categories.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
/***********************************************************************************************************************
# * Copyright (c) 2018-present, TryHackMe, Ltd.
# *
# * This source code is licensed under the MIT license found in the
# * LICENSE file in the root directory of this source tree.
# *
# * ******** INSTRUCTIONS ********
# * Once you have added or amended the relevant documentation markdown files, and ensured
# * that the sidebars.js file has been updated accordingly, this file can be modified to add/remove
# * the documentation categories listed on the website homepage.
# *
# * Follow the structure that has already been defined, and ensure you increment the ID number of any categories that
# * that you may have added, modified or removed.
# *
# * Please ensure you read the README.md file to adhere to the contribution guidelines.
# *
# * @author Matt Kent (@Matt_Kent9 <Twitter>)
***********************************************************************************************************************/
module.exports = [
{
id: 1,
title: 'General',
description: 'Just getting started with TryHackMe? Start here for a detailed introduction to our platform.',
uri: '/docs/general/welcome'
},
{
id: 2,
title: 'OpenVPN',
description: 'Guides on setting up, connecting and troubleshooting OpenVPN connections.',
uri: '/docs/openvpn/why-openvpn'
},
{
id: 3,
title: 'Completing Rooms',
description: 'Guides on how to use and complete TryHackMe rooms.',
uri: '/docs/rooms/what-are-rooms'
},
{
id: 4,
title: 'Room Creation',
description: 'How to create your own TryHackMe rooms for training, workshops and assessments.',
uri: '/docs/room-creation/room-creation-getting-started'
},
{
id: 5,
title: 'Sales and Billing',
description: 'Information on sales and billing.',
uri: '/docs/sales-billing/sales-billing-student'
},
{
id: 6,
title: 'TryHackMe for Teaching',
description: 'Guides on managing students, virtual labs and teaching content for Cybersecurity training.',
uri: '/docs/teaching/teaching-getting-started'
},
{
id: 7,
title: 'Discord',
description: 'FAQs related to the TryHackMe Discord Server.',
uri: '/docs/discord/discord-getting-started'
},
{
id: 8,
title: 'The "King Of The Hill" Gamemode',
description: 'Everything you need to know regarding the "King Of The Hill" gamemode.',
uri: '/docs/koth/king-of-the-hill'
},
{
id: 9,
title: 'API Docs',
description: 'TryHackMe API docs and service endpoints.',
uri: '/docs/api-docs/introduction'
}
]