import React from "react";
import { DocsThemeConfig } from "nextra-theme-docs";
const config: DocsThemeConfig = {
logo: (
{/* */}
Dashcode
),
project: {
link: "https://github.com/shuding/nextra",
},
banner: {
key: "1.0-release",
text: (
🎉 Dashcode
),
},
footer: {
text: (
{new Date().getFullYear()} ©{" "}
CodeShaper
.
),
},
themeSwitch: {
useOptions() {
return {
light: "Light",
dark: "Dark",
system: "System",
};
},
},
useNextSeoProps() {
return {
titleTemplate: "%s – Dashcode",
};
},
};
export default config;