import React from 'react' import { DocsThemeConfig } from 'nextra-theme-docs' import DashCodeLogo from '@/components/dascode-logo'; 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', // Add this line }; }, }, useNextSeoProps() { return { titleTemplate: "%s – Dashcode", }; }, }; export default config