Skip to content

Commit

Permalink
Changes to Header Nav (#7082)
Browse files Browse the repository at this point in the history
  • Loading branch information
danforbes authored Jun 5, 2024
1 parent 9fe4eb2 commit 94f4f82
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions docs/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const packages = [

/** @type {import('@docusaurus/types').Config} */
const config = {
title: 'web3.js',
title: 'Web3.js',
tagline: 'Powerful TypeScript libraries for Ethereum interaction and utility functions',
url: 'https://docs.web3js.org',
baseUrl: '/',
Expand All @@ -52,7 +52,7 @@ const config = {
// GitHub pages deployment config.
// If you aren't using GitHub pages, you don't need these.
organizationName: 'ChainSafe', // Usually your GitHub org/user name.
projectName: 'web3.js', // Usually your repo name.
projectName: 'Web3.js', // Usually your repo name.

// Even if you don't use internalization, you can use this field to set useful
// metadata like html lang. For example, if your site is Chinese, you may want
Expand Down Expand Up @@ -109,37 +109,36 @@ const config = {
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
navbar: {
title: 'Web3.js Docs',
title: 'Web3.js Docs',
logo: {
src: 'img/web3js.svg',
},
items: [
{
to: '/',
activeBasePath: '/',
to: '/guides/getting_started/quickstart',
activeBasePath: '/guides',
label: 'Guides & Tutorials',
position: 'left',
},
{
to: '/libdocs/ABI',
activeBasePath: '/libdocs/',
activeBasePath: '/libdocs',
label: 'Documentation',
position: 'left',
},
{
to: 'api', // 'api' is the 'out' directory
to: '/api', // 'api' is the 'out' directory
label: 'API',
position: 'left',
},
{
to: 'glossary',
activeBasePath: '/glossary/',
to: '/glossary',
activeBasePath: '/glossary',
label: 'Glossary',
position: 'left',
},
{
to: '/web3_playground',
activeBasePath: '/',
label: 'Playground',
position: 'right',
},
Expand Down

1 comment on commit 94f4f82

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark

Benchmark suite Current: 94f4f82 Previous: 9fe4eb2 Ratio
processingTx 8833 ops/sec (±4.02%) 8980 ops/sec (±4.80%) 1.02
processingContractDeploy 35881 ops/sec (±7.95%) 38804 ops/sec (±6.95%) 1.08
processingContractMethodSend 18484 ops/sec (±4.82%) 20527 ops/sec (±4.43%) 1.11
processingContractMethodCall 37028 ops/sec (±4.19%) 40756 ops/sec (±6.35%) 1.10
abiEncode 39527 ops/sec (±7.28%) 44494 ops/sec (±8.23%) 1.13
abiDecode 27646 ops/sec (±8.72%) 30658 ops/sec (±7.47%) 1.11
sign 1571 ops/sec (±0.91%) 1598 ops/sec (±0.76%) 1.02
verify 360 ops/sec (±2.83%) 375 ops/sec (±0.38%) 1.04

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.