From 75d0fb23c665a63d2850173493505d3c54113c11 Mon Sep 17 00:00:00 2001 From: xiaoch05 Date: Wed, 10 Jul 2024 15:58:59 +0800 Subject: [PATCH] add audit report link --- sidebars.ts | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) 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;