|
1 | 1 | import { defineConfig } from 'vitepress' |
2 | 2 |
|
3 | 3 | // https://vitepress.vuejs.org/config/app-configs |
4 | | -export default defineConfig({}) |
| 4 | +export default defineConfig({ |
| 5 | + title: "Adaptive Intelligence Circle", |
| 6 | + description: "Ethical AI from the kernel. Meaning in a post-scarcity world.", |
| 7 | + |
| 8 | + lastUpdated: true, |
| 9 | + |
| 10 | + themeConfig: { |
| 11 | + // https://vitepress.dev/reference/default-theme-config |
| 12 | + nav: [ |
| 13 | + { text: 'Home', link: '/' }, |
| 14 | + { text: 'About', link: '/about' }, |
| 15 | + { text: 'Vision', link: '/vision' }, |
| 16 | + { text: 'Repos', link: 'https://github.com/AdaptiveIntelligenceCircle' }, // thay bằng link GitHub org thật của bạn |
| 17 | + { text: 'Contribute', link: '/contribute' } |
| 18 | + ], |
| 19 | + |
| 20 | + sidebar: [ |
| 21 | + { |
| 22 | + text: 'Introduction', |
| 23 | + items: [ |
| 24 | + { text: 'What is AIC?', link: '/what-is-aic' }, |
| 25 | + { text: 'Third Path Philosophy', link: '/third-path' } |
| 26 | + ] |
| 27 | + }, |
| 28 | + { |
| 29 | + text: 'Networks', |
| 30 | + items: [ |
| 31 | + { text: 'AIN - Decentralized Network', link: '/ain' }, |
| 32 | + { text: 'HMN - Human Meaning Network', link: '/hmn' } |
| 33 | + ] |
| 34 | + } |
| 35 | + ], |
| 36 | + |
| 37 | + socialLinks: [ |
| 38 | + { icon: 'github', link: 'https://github.com/AdaptiveIntelligenceCircle' }, // thay bằng GitHub org |
| 39 | + { icon: 'linkedin', link: 'https://www.linkedin.com/company/adaptive-intelligence-circletelligence-circle/?viewAsMember=true' } // link Company Page bạn vừa tạo |
| 40 | + ], |
| 41 | + |
| 42 | + footer: { |
| 43 | + message: 'Released under the GPL-3.0 License.', |
| 44 | + copyright: 'Copyright © 2026 Nguyễn Đức Trí & AIC Contributors' |
| 45 | + }, |
| 46 | + |
| 47 | + editLink: { |
| 48 | + pattern: 'https://github.com/AdaptiveIntelligenceCircle/aic-project.github.io/edit/main/:path', |
| 49 | + text: 'Edit this page on GitHub' |
| 50 | + } |
| 51 | + } |
| 52 | +}) |
0 commit comments