From ffbf5d8dafa28e2a4b52a18b1010aea92343fd9c Mon Sep 17 00:00:00 2001 From: Yana Date: Mon, 14 Oct 2024 15:06:47 +0300 Subject: [PATCH] Add Matrix link to navbar --- documentation/docs/theme.config.jsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/documentation/docs/theme.config.jsx b/documentation/docs/theme.config.jsx index 0eb81fb97e..ece6a1dc2a 100644 --- a/documentation/docs/theme.config.jsx +++ b/documentation/docs/theme.config.jsx @@ -5,6 +5,7 @@ import { useConfig } from 'nextra-theme-docs'; import { Footer } from "./components/footer"; +import {Matrix} from "./components/matrix-link"; const config = { logo: Nym Docs, @@ -31,6 +32,9 @@ const config = { defaultMenuCollapseLevel: 1, autoCollapse: true, }, + navbar : { + extraContent: +} }; export default config;