| |
| const {themes} = require('prism-react-renderer'); |
|
|
| |
| const config = { |
| title: 'Eudaia Labs', |
| tagline: 'Inteligência Artificial com carinho', |
| favicon: 'img/favicon.ico', |
| url: 'https://eudaia-labs.github.io', |
| baseUrl: '/eudaia-docs/', |
| organizationName: 'EudaiaLabs', |
| projectName: 'eudaia-docs', |
| |
| themeConfig: { |
| navbar: { |
| title: 'Eudaia Labs', |
| logo: { |
| alt: 'Eudaia Labs Logo', |
| src: 'img/logo.svg', |
| }, |
| items: [ |
| {to: '/docs', label: 'Docs', position: 'left'}, |
| {to: '/blog', label: 'Blog', position: 'left'}, |
| { |
| href: 'https://huggingface.co/Joks8474', |
| label: '🤗 Modelos', |
| position: 'right', |
| }, |
| { |
| href: 'https://github.com/EudaiaLabs', |
| label: 'GitHub', |
| position: 'right', |
| }, |
| ], |
| }, |
| footer: { |
| style: 'dark', |
| links: [ |
| { |
| title: 'Docs', |
| items: [ |
| {label: 'Modelos', to: '/docs/models/overview'}, |
| {label: 'Jornada', to: '/docs/journey/day-1'}, |
| {label: 'Tutoriais', to: '/docs/tutorials/quick-start'}, |
| ], |
| }, |
| { |
| title: 'Community', |
| items: [ |
| {label: 'X (Twitter)', href: 'https://twitter.com/EudaiaLabs'}, |
| {label: 'Hugging Face', href: 'https://huggingface.co/Joks8474'}, |
| {label: 'GitHub', href: 'https://github.com/EudaiaLabs'}, |
| ], |
| }, |
| { |
| title: 'More', |
| items: [ |
| {label: 'Blog', to: '/blog'}, |
| {label: 'GitHub', href: 'https://github.com/EudaiaLabs/eudaia-docs'}, |
| ], |
| }, |
| ], |
| copyright: `Copyright © ${new Date().getFullYear()} Eudaia Labs. Feito com 💜 por um dev mirim de 12 anos.`, |
| }, |
| prism: { |
| theme: themes.github, |
| darkTheme: themes.dracula, |
| }, |
| }, |
| |
| presets: [ |
| [ |
| '@docusaurus/preset-classic', |
| { |
| docs: { |
| sidebarPath: require.resolve('./sidebars.js'), |
| editUrl: 'https://github.com/EudaiaLabs/eudaia-docs/edit/main/', |
| }, |
| blog: { |
| showReadingTime: true, |
| editUrl: 'https://github.com/EudaiaLabs/eudaia-docs/edit/main/', |
| }, |
| theme: { |
| customCss: require.resolve('./src/css/custom.css'), |
| }, |
| }, |
| ], |
| ], |
| }; |
|
|
| module.exports = config; |