diff --git a/theme.config.jsx b/theme.config.jsx deleted file mode 100644 index 40ce68d..0000000 --- a/theme.config.jsx +++ /dev/null @@ -1,20 +0,0 @@ -import React from "react" - -export default { - logo: Documentation, - logoLink: "https://github.com/filiptibell/lune/raw/main/assets/logo/tilt.ico", - docsRepositoryBase: "https://github.com/lune-org/docs/blob/main/pages", - project: { - link: "https://github.com/filiptibell/lune", - }, - footer: { - text: ( - - MPL-2.0 {new Date().getFullYear()} ©{" "} - - Lune - - - ), - }, -} diff --git a/theme.config.tsx b/theme.config.tsx new file mode 100644 index 0000000..357d3d3 --- /dev/null +++ b/theme.config.tsx @@ -0,0 +1,40 @@ +import React from "react" + +import { useRouter } from "next/router" +import type { DocsThemeConfig } from "nextra-theme-docs" + +const config: DocsThemeConfig = { + docsRepositoryBase: "https://github.com/lune-org/docs/blob/main", + useNextSeoProps() { + const { asPath } = useRouter() + if (asPath !== "/") { + return { + titleTemplate: "%s – Lune", + } + } + }, + project: { + link: "https://github.com/filiptibell/lune", + }, + footer: { + text: ( + + MPL-2.0 {new Date().getFullYear()} ©{" "} + + Lune + + + ), + }, + logo: ( + <> + + + ), +} + +export default config