From 533a08e26aed404347cdd7f301ff815de311dec3 Mon Sep 17 00:00:00 2001 From: Julien Date: Mon, 25 Mar 2024 03:50:01 -0700 Subject: [PATCH] chore: customize docusaurus title (#6560) --- docs/src/theme/Layout/index.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 docs/src/theme/Layout/index.js 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 + + + ); +}