Skip to content

Commit

Permalink
chore: customize docusaurus title
Browse files Browse the repository at this point in the history
  • Loading branch information
jeluard committed Mar 19, 2024
1 parent f672c10 commit 8560d1b
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docs/src/theme/Layout/index.js
Original file line number Diff line number Diff line change
@@ -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 (
<>
<Layout {...props} />
<Head>
<title>Lodestar Documentation</title>
</Head>
</>
);
}

0 comments on commit 8560d1b

Please sign in to comment.