File size: 2,463 Bytes
3cad74d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
// @ts-check
const {themes} = require('prism-react-renderer');

/** @type {import('@docusaurus/types').Config} */
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;