You can customize your Dokz site logo, nav items, footer and much more, simply pass the elements you want to replace to the DokzProvider
props:
1import { DokzProvider, GithubLink, ColorModeSwitch } from 'dokz'2import React from 'react'34export default function App(props) {5const { Component, pageProps } = props6return (7<DokzProvider8headerItems={[9<GithubLink url='https://github.com/remorses/dokz' />,10<ColorModeSwitch />,11]}12headerLogo={13<img14src='/dokz_logo.svg'15style={{ opacity: 0.8 }}16width='100px'17/>18}19initialColorMode='dark'20sidebarOrdering={{21'index.mdx': 1,22general: {23'getting_started.mdx': null,24'writing_mdx.mdx': null,25},26customizing: { 'customizing_components.mdx': null },27}}28>29<Component {...pageProps} />30</DokzProvider>31)32}
Other customizations are possible via the DokzProvider
props