From 57fbbd7ac978646546c445514f8afc2f3ce1a533 Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Sun, 17 Sep 2023 13:25:38 -0500 Subject: [PATCH] Add logo to header, fix page seo titles --- theme.config.jsx | 20 -------------------- theme.config.tsx | 40 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+), 20 deletions(-) delete mode 100644 theme.config.jsx create mode 100644 theme.config.tsx 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