mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-24 06:48:42 +03:00
515ef25a72
* refactored Storybook UI * refactored Storybook UI * removed extra cards from the doc, added card for ui components * added hover behavior to doc page & made it look selected * separate storybook docs and tests * separating storybook tests and docs * fixed spelling errors in docs * Final round of edits for frontend, added backend folder architecture * Created CODE_OF_CONDUCT.md * Add code of conduct to contributing.md * doc changes * fixed broken links * doc addition and changes * introduce user guide & graphql api
44 lines
1008 B
JavaScript
44 lines
1008 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: ".", }],
|
|
frontendSidebar: [
|
|
backToHomeLink,
|
|
{ type: "autogenerated", dirName: "contributor/frontend" },
|
|
],
|
|
backendSidebar: [
|
|
backToHomeLink,
|
|
{ type: "autogenerated", dirName: "contributor/server" },
|
|
],
|
|
userSidebar:[
|
|
backToHomeLink,
|
|
{ type: "autogenerated", dirName: "user-guide", },
|
|
]
|
|
};
|
|
|
|
module.exports = sidebars;
|