import type { DefaultTheme } from "vitepress";
import nav from "./navigation/navbar";
import sidebar from "./navigation/sidebar";
const themeConfig: DefaultTheme.Config = {
logo: "/img/logo-128px.png",
nav: nav,
sidebar: sidebar,
outline: [2, 3],
socialLinks: [
{ icon: "github", link: "https://github.com/tachiyomiorg/tachiyomi", ariaLabel: "Project GitHub" },
{ icon: "discord", link: "https://discord.gg/tachiyomi", ariaLabel: "Discord Server" },
{ icon: "twitter", link: "https://twitter.com/tachiyomiorg", ariaLabel: "Twitter Page" },
{ icon: "facebook", link: "https://facebook.com/tachiyomiorg", ariaLabel: "Facebook Page" },
//{ icon: "instagram", link: "https://instagram.com/tachiyomiorg", ariaLabel: "Instagram Page" },
],
footer: {
message: `Open-source Apache Licensed | Privacy policy | Powered by Netlify `,
copyright: `Copyright © 2015 - ${new Date().getFullYear()} Javier Tomás`,
},
editLink: {
pattern: "https://github.com/xhenos/kodo/edit/v3-vitepress/website/src/:path",
text: "Help us improve this page",
},
lastUpdated: {
text: "Last updated",
formatOptions: {
dateStyle: "long",
timeStyle: "short",
},
},
search: {
provider: "local",
},
};
export default themeConfig;