mirror of
https://github.com/pezkuwichain/pezkuwi-ui.git
synced 2026-04-22 02:08:03 +00:00
c3f57c19e8
* Move ui-identicon -> react-identicon * ui-identicon import fix * Update README package links * Update doc sidebar links * Adjust react-qr signatures, CHANGELOG
33 lines
1.0 KiB
JavaScript
33 lines
1.0 KiB
JavaScript
module.exports = {
|
|
base: '/ui/',
|
|
title: 'polkadot-js/ui',
|
|
description: 'UI utilities, libraries and React components in use across @polkadot projects',
|
|
markdown: {
|
|
lineNumbers: true
|
|
},
|
|
themeConfig: {
|
|
displayAllHeaders: true,
|
|
nav: [
|
|
{ text: 'Polkadot/Substrate Apps', link: 'https://polkadot.js.org/apps/' },
|
|
{ text: 'Project family', link: 'https://polkadot.js.org/' },
|
|
{
|
|
text: 'Documentation',
|
|
items: [
|
|
{ text: 'API Reference', link: 'https://polkadot.js.org/api/' },
|
|
{ text: 'Utility Reference', link: 'https://polkadot.js.org/common/' },
|
|
{ text: 'UI Libs Reference (this)', link: 'https://polkadot.js.org/ui/' },
|
|
]
|
|
},
|
|
{ text: 'GitHub', link: 'https://github.com/polkadot-js/ui' }
|
|
],
|
|
search: false,
|
|
sidebar: [
|
|
['/react-identicon/', '@polkadot/react-identicon'],
|
|
['/react-qr/', '@polkadot/react-qr'],
|
|
['/ui-keyring/', '@polkadot/ui-keyring'],
|
|
['/ui-settings/', '@polkadot/ui-settings'],
|
|
'/CONTRIBUTING.md'
|
|
]
|
|
}
|
|
};
|