Changes to documentation (#2209)

* 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
This commit is contained in:
Nimra Ahmed
2023-10-24 14:36:43 +05:00
committed by GitHub
parent 5acafe2fc6
commit 515ef25a72
12 changed files with 83 additions and 14 deletions

View File

@ -25,7 +25,7 @@ const backToHomeLink = {
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
docsSidebar: [{ type: "autogenerated", dirName: "." }],
docsSidebar: [{ type: "autogenerated", dirName: ".", }],
frontendSidebar: [
backToHomeLink,
{ type: "autogenerated", dirName: "contributor/frontend" },
@ -34,6 +34,10 @@ const sidebars = {
backToHomeLink,
{ type: "autogenerated", dirName: "contributor/server" },
],
userSidebar:[
backToHomeLink,
{ type: "autogenerated", dirName: "user-guide", },
]
};
module.exports = sidebars;