module.exports = { title: 'Token Engineering', tagline: 'Because tokens don\'t engineer themselves!', organizationName: 'te-temp', projectName: 'te-website', baseUrl: '/te-website/', url: 'https://te-temp.github.io/', favicon: 'img/te-logo.png', themeConfig: { navbar: { title: 'Token Engineering', logo: { alt: 'Token Engineering Logo', src: 'img/te-logo.png', }, links: [ { to: 'docs/about', activeBasePath: 'docs', label: '📚 Library', position: 'left', }, { to: 'blog', label: '📰 Blog', position: 'left' }, { href: 'https://github.com/facebook/docusaurus', label: 'GitHub', position: 'right', }, ], }, footer: { style: 'dark', links: [ { title: 'Learn', items: [ { label: '👋 Introduction', to: 'docs/introduction', }, { label: '📚 Token Engineering 101', to: 'docs/installation', }, { label: '📖 TE Book', to: 'docs/migrating-from-v1-to-v2', }, ], }, { title: 'TE Channels', items: [ { label: '🦜 Twitter', href: 'https://twitter.com/tokenengineering', }, { label: '💬 Discord', href: 'https://discord.gg/gHvksh8', }, { label: '📜 Blog', to: 'blog', }, { label: '🐈 GitHub', href: 'https://github.com/tokenengineeringcommunity', }, ], }, { title: 'Other', items: [ { label: '🔁 Feedback', to: 'feedback', }, { label: '🆘 Help', to: 'docs/next/support', }, ], }, { title: 'Placeholder', items: [ { label: '🔁 Feedback', to: 'feedback', }, { label: '🆘 Help', to: 'docs/next/support', }, { label: '🐈 GitHub', href: 'https://github.com/tokenengineeringcommunity', }, ], }, ], logo: { alt: 'Token Engineering Logo', src: '/img/te-logo.png', href: 'https://tokens.engineering', }, copyright: `Copyright © ${new Date().getFullYear()} Token Engineering.
🦖 Built with Docusaurus!`, }, }, presets: [ [ '@docusaurus/preset-classic', { docs: { sidebarPath: require.resolve('./sidebars.js'), // Please change this to your repo. editUrl: 'https://github.com/te-temp/te-website/edit/master/', }, blog: { showReadingTime: true, // Please change this to your repo. editUrl: 'https://github.com/te-temp/te-website/edit/master/te-website/blog/', }, theme: { customCss: require.resolve('./src/css/custom.css'), }, }, ], ], };