From 8560d1bfa5cf192a69bf3923e81d35e243d87d7d Mon Sep 17 00:00:00 2001 From: Julien Eluard Date: Tue, 19 Mar 2024 09:05:25 +0100 Subject: [PATCH] chore: customize docusaurus title --- 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 + + + ); +}