mirror of
				https://github.com/lingble/twenty.git
				synced 2025-11-04 06:37:56 +00:00 
			
		
		
		
	* POC: docs: add page level sidebar Closes #1341 * docs: hide level 1 test page from navbar
		
			
				
	
	
		
			36 lines
		
	
	
		
			801 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			801 B
		
	
	
	
		
			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
 | 
						|
 | 
						|
const backToHomeLink = {
 | 
						|
  /** @type {"ref"} */
 | 
						|
  type: "ref",
 | 
						|
  id: "homepage",
 | 
						|
  label: "Back to home",
 | 
						|
  className: "menu__list-item--home",
 | 
						|
  customProps: {
 | 
						|
    icon: "TbArrowBackUp",
 | 
						|
    iconSize: 20,
 | 
						|
  },
 | 
						|
};
 | 
						|
 | 
						|
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
 | 
						|
const sidebars = {
 | 
						|
  docsSidebar: [{ type: "autogenerated", dirName: "." }],
 | 
						|
  level2PageSidebar: [
 | 
						|
    backToHomeLink,
 | 
						|
    { type: "autogenerated", dirName: "level-1/level-2" },
 | 
						|
  ],
 | 
						|
};
 | 
						|
 | 
						|
module.exports = sidebars;
 |