diff --git a/docs/src/theme/Layout/index.js b/docs/src/theme/Layout/index.js new file mode 100644 index 000000000000..afa249e6a25c --- /dev/null +++ b/docs/src/theme/Layout/index.js @@ -0,0 +1,14 @@ +import React from 'react'; +import Head from '@docusaurus/Head'; +import Layout from '@theme-original/Layout'; + +export default function LayoutWrapper(props) { + return ( + <> + + + Lodestar Documentation + + + ); +}