diff --git a/sidebars.ts b/sidebars.ts index 7dfdcb5..656e7a3 100644 --- a/sidebars.ts +++ b/sidebars.ts @@ -12,20 +12,20 @@ import type { SidebarsConfig } from "@docusaurus/plugin-content-docs"; */ const sidebars: SidebarsConfig = { // By default, Docusaurus generates a sidebar from the docs folder structure - tutorialSidebar: [{ type: "autogenerated", dirName: "." }], - - // But you can create a sidebar manually - /* tutorialSidebar: [ - 'intro', - 'hello', - { - type: 'category', - label: 'Tutorial', - items: ['tutorial-basics/create-a-document'], - }, + { type: "autogenerated", dirName: "." }, + { + type: 'category', + label: 'Audit', + items: [ + { + type: 'link', + label: 'Audit Report', + href: 'https://github.com/helix-bridge/contracts/blob/master/helix-contract/audit/2024-07-04%20Audit%20Report%20-%20Helix%20Bridge%20v1.0.pdf', + } + ], + }, ], - */ }; export default sidebars;