a336893116
* first pass redoc apis * new landing + component update * added intro * new structure * link list * add sandbox sdk * remove theme colours * revert credit to ticket & ticketbook and actually get all the instances to replace * Max/zknym doc tweak (#5223) * revert credit to ticket & ticketbook * revert credit to ticket & ticketbook and actually get all the instances to replace * theme tweak to widen text area * theme redoc component * tweak padding topbar * modified socks5 page to be in line with websocket client * modify h size of autodoc generated command info * tweak script to build from master * add autodoc to workspace * auto commit generated command files * clean autodoc-generated-markdown in script * auto commit generated command files * tweak works * clippy * fix borked toml from cherrypick * remove rm command * auto commit generated command files * blow away images * auto commit generated command files * remove redoc for nymapi for the moment but retain everything else * fix double paste * temp remove sandbox
45 lines
1.2 KiB
TypeScript
45 lines
1.2 KiB
TypeScript
import React from "react";
|
||
import { DocsThemeConfig } from "nextra-theme-docs";
|
||
import { Footer } from "./components/footer";
|
||
import { Matrix } from "./components/matrix-link";
|
||
import { useRouter } from "next/router";
|
||
|
||
const config: DocsThemeConfig = {
|
||
useNextSeoProps() {
|
||
return {
|
||
titleTemplate: "%s – Nym Docs",
|
||
};
|
||
},
|
||
logo: <span>Nym Docs</span>,
|
||
project: {
|
||
link: "https://github.com/nymtech/nym",
|
||
},
|
||
docsRepositoryBase:
|
||
"https://github.com/nymtech/nym/tree/develop/documentation/docs/",
|
||
footer: {
|
||
text: Footer,
|
||
},
|
||
darkMode: true,
|
||
sidebar: {
|
||
defaultMenuCollapseLevel: 1,
|
||
autoCollapse: true,
|
||
},
|
||
navbar: {
|
||
extraContent: <Matrix />,
|
||
},
|
||
toc: {
|
||
float: false, // TODO would be nice to set this to false so the TOC is in the left sidebar but this doesn't seem to work with pages that are also the top of directories: fix
|
||
// if we do this then we also have to uncomment the editLink and feedback objects below
|
||
component: null, // try remove right-hand column
|
||
},
|
||
editLink: {
|
||
component: null, // remove element
|
||
},
|
||
feedback: {
|
||
content: null, // remove element
|
||
},
|
||
// gitTimestamp: TODO
|
||
};
|
||
|
||
export default config;
|