mirror of
https://github.com/lune-org/docs.git
synced 2025-04-03 18:10:54 +01:00
Add logo to header, fix page seo titles
This commit is contained in:
parent
42ca3df4fc
commit
57fbbd7ac9
2 changed files with 40 additions and 20 deletions
|
@ -1,20 +0,0 @@
|
|||
import React from "react"
|
||||
|
||||
export default {
|
||||
logo: <span>Documentation</span>,
|
||||
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: (
|
||||
<span>
|
||||
MPL-2.0 {new Date().getFullYear()} ©{" "}
|
||||
<a href="https://github.com/filiptibell/lune" target="_blank">
|
||||
Lune
|
||||
</a>
|
||||
</span>
|
||||
),
|
||||
},
|
||||
}
|
40
theme.config.tsx
Normal file
40
theme.config.tsx
Normal file
|
@ -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: (
|
||||
<span>
|
||||
MPL-2.0 {new Date().getFullYear()} ©{" "}
|
||||
<a href="https://github.com/filiptibell/lune" target="_blank">
|
||||
Lune
|
||||
</a>
|
||||
</span>
|
||||
),
|
||||
},
|
||||
logo: (
|
||||
<>
|
||||
<img
|
||||
width="40"
|
||||
height="40"
|
||||
src="https://github.com/filiptibell/lune/raw/main/assets/logo/tilt.png"
|
||||
/>
|
||||
</>
|
||||
),
|
||||
}
|
||||
|
||||
export default config
|
Loading…
Add table
Reference in a new issue