Joks8474 commited on
Commit
3cad74d
·
verified ·
1 Parent(s): a2bec5d

Create docusaurus.config.js

Browse files
Files changed (1) hide show
  1. docusaurus.config.js +91 -0
docusaurus.config.js ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // @ts-check
2
+ const {themes} = require('prism-react-renderer');
3
+
4
+ /** @type {import('@docusaurus/types').Config} */
5
+ const config = {
6
+ title: 'Eudaia Labs',
7
+ tagline: 'Inteligência Artificial com carinho',
8
+ favicon: 'img/favicon.ico',
9
+ url: 'https://eudaia-labs.github.io',
10
+ baseUrl: '/eudaia-docs/',
11
+ organizationName: 'EudaiaLabs',
12
+ projectName: 'eudaia-docs',
13
+
14
+ themeConfig: {
15
+ navbar: {
16
+ title: 'Eudaia Labs',
17
+ logo: {
18
+ alt: 'Eudaia Labs Logo',
19
+ src: 'img/logo.svg',
20
+ },
21
+ items: [
22
+ {to: '/docs', label: 'Docs', position: 'left'},
23
+ {to: '/blog', label: 'Blog', position: 'left'},
24
+ {
25
+ href: 'https://huggingface.co/Joks8474',
26
+ label: '🤗 Modelos',
27
+ position: 'right',
28
+ },
29
+ {
30
+ href: 'https://github.com/EudaiaLabs',
31
+ label: 'GitHub',
32
+ position: 'right',
33
+ },
34
+ ],
35
+ },
36
+ footer: {
37
+ style: 'dark',
38
+ links: [
39
+ {
40
+ title: 'Docs',
41
+ items: [
42
+ {label: 'Modelos', to: '/docs/models/overview'},
43
+ {label: 'Jornada', to: '/docs/journey/day-1'},
44
+ {label: 'Tutoriais', to: '/docs/tutorials/quick-start'},
45
+ ],
46
+ },
47
+ {
48
+ title: 'Community',
49
+ items: [
50
+ {label: 'X (Twitter)', href: 'https://twitter.com/EudaiaLabs'},
51
+ {label: 'Hugging Face', href: 'https://huggingface.co/Joks8474'},
52
+ {label: 'GitHub', href: 'https://github.com/EudaiaLabs'},
53
+ ],
54
+ },
55
+ {
56
+ title: 'More',
57
+ items: [
58
+ {label: 'Blog', to: '/blog'},
59
+ {label: 'GitHub', href: 'https://github.com/EudaiaLabs/eudaia-docs'},
60
+ ],
61
+ },
62
+ ],
63
+ copyright: `Copyright © ${new Date().getFullYear()} Eudaia Labs. Feito com 💜 por um dev mirim de 12 anos.`,
64
+ },
65
+ prism: {
66
+ theme: themes.github,
67
+ darkTheme: themes.dracula,
68
+ },
69
+ },
70
+
71
+ presets: [
72
+ [
73
+ '@docusaurus/preset-classic',
74
+ {
75
+ docs: {
76
+ sidebarPath: require.resolve('./sidebars.js'),
77
+ editUrl: 'https://github.com/EudaiaLabs/eudaia-docs/edit/main/',
78
+ },
79
+ blog: {
80
+ showReadingTime: true,
81
+ editUrl: 'https://github.com/EudaiaLabs/eudaia-docs/edit/main/',
82
+ },
83
+ theme: {
84
+ customCss: require.resolve('./src/css/custom.css'),
85
+ },
86
+ },
87
+ ],
88
+ ],
89
+ };
90
+
91
+ module.exports = config;