Category in Sidebars
Adding categories in sidebars
To add the category of the Docs and Blog items in the sidebar
, we modified the sidebar.js
file in the root directory of our project.
Here's how we made those changes:
Opening the
sidebars.js
file in our projects's root directory.To add a new category, we first created an array
docs
, in which we created an object with thetype
property set to'category'
, thelabel
prperty set to the name of the'category'
.sidebars.jsconst sidebars =
{
docs:
[
{
type: 'category',
label: 'Category',
// Other sidebar properties
},
],
// Other sidebar properties
}
module.exports = sidebars;Adding the different categories and labels in our
sidebars.js
file.sidebars.jsconst sidebars =
{
docs:
[
{
type: 'category',
label: 'Projects',
},
],
// Other sidebar properties
}
module.exports = sidebars;
With this we were able to add different categories in our website's sidebars.
After completing the sidebar categories of TCET Open Source website, we then shifted our focus to review and organize the items within each category.