Skip to content

Commit

Permalink
docs: fix homepage title (#1268)
Browse files Browse the repository at this point in the history
  • Loading branch information
holic authored Aug 9, 2023
1 parent 233d325 commit 3f8124e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/pages/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import Link from "next/link";
</>
}
/>

<div style={{ display: "flex", justifyContent: "center" }}>
<div style={{ marginTop: "12px" }}>
<Logo />
Expand Down
2 changes: 1 addition & 1 deletion docs/theme.config.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const config: DocsThemeConfig = {
useNextSeoProps() {
const { asPath } = useRouter();
return {
titleTemplate: asPath === "/" ? "%s" : "%s – MUD",
titleTemplate: asPath === "/" ? "MUD – a framework for ambitious Ethereum applications" : "%s – MUD",
};
},
project: {
Expand Down

0 comments on commit 3f8124e

Please sign in to comment.