diff --git a/src/theme/Navbar/index.tsx b/src/theme/Navbar/index.tsx new file mode 100644 index 0000000..cb48dc7 --- /dev/null +++ b/src/theme/Navbar/index.tsx @@ -0,0 +1,14 @@ +import type NavbarType from '@theme/Navbar'; +import type { WrapperProps } from '@docusaurus/types'; +import React from 'react'; +import Navbar from '@theme-original/Navbar'; + +type Props = WrapperProps; + +export default function NavbarWrapper(props: Props): JSX.Element { + return ( + <> + + + ); +}