massgrave.dev/sidebars.js
Lyssa b131a351df
Rework manual activation sections for easier consumption (#33)
* add tickets to static

* simplify manual hwid activation section and move it into it's own separate page, (from scratch section WIP)

* remove decorative window

* rename tickets

* remove tickets from website

* more table work

* tabel

* add links to table

* add stub to hwid page

* kms38 page, move guide pages to sidebar section

* remove unnecessary whitespace

* ohook work

* more ohook work

* add info box to kms38 page

* revert guides list changes

* edit info blobs

* minor tweaks

* minor tweaks again

* add ticket generation section to hwid page

* finish up with ticket gen section

* unnecessary command in manual kms38 page

* wonky structure fix

* point to latest release instead

* Fix double dot

* minor changes

* add manual activation to dropdown on top bar
2025-03-16 23:48:52 +05:30

48 lines
1.2 KiB
JavaScript

/**
* Creating a sidebar enables you to:
- create an ordered group of docs
- render a sidebar for each doc of that group
- provide next/previous navigation
The sidebars can be generated from the filesystem, or explicitly defined here.
Create as many sidebars as you want.
*/
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
// By default, Docusaurus generates a sidebar from the docs folder structure
tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],
// But you can create a sidebar manually
tutorialSidebar: [
'intro',
'faq',
'troubleshoot',
'genuine-installation-media',
{
type: 'category',
label: 'Docs',
items: ['hwid','ohook','tsforge','kms38','online_kms','chart','command_line_switches','check_activation_status','oem-folder','change_windows_edition','change_office_edition'],
},
{
type: 'category',
label: 'Manual Activation',
items: ['manual_hwid_activation', 'manual_ohook_activation', 'manual_kms38_activation']
},
'guide_links',
'news',
'changelog',
'unsupported_products_activation',
'our_non-piracy_site',
'credits',
'contactus',
],
};
export default sidebars;