|
1 | 1 | export const navigation = [
|
2 | 2 | {
|
3 | 3 | title: 'Introduction',
|
| 4 | + links: [{ title: 'Overview', href: '/' }], |
| 5 | + }, |
| 6 | + { |
| 7 | + title: 'Getting started', |
4 | 8 | links: [
|
5 |
| - { title: 'Getting started', href: '/' }, |
6 | 9 | { title: 'Installation', href: '/installation' },
|
| 10 | + { title: 'Quick start', href: '/quick-start' }, |
| 11 | + ], |
| 12 | + }, |
| 13 | + { |
| 14 | + title: 'Core Concepts', |
| 15 | + links: [ |
| 16 | + { title: 'Understanding AST', href: '/ast' }, |
| 17 | + { title: 'Basic Operations', href: '/basic-operations' }, |
7 | 18 | ],
|
8 | 19 | },
|
9 | 20 | {
|
10 |
| - title: 'Packages', |
| 21 | + title: 'Usage Examples', |
| 22 | + links: [ |
| 23 | + { title: 'Basic Usage', href: '/basic-usage' }, |
| 24 | + { title: 'Advanced Usage', href: '/advanced-usage' }, |
| 25 | + ], |
| 26 | + }, |
| 27 | + { |
| 28 | + title: 'API Reference', |
11 | 29 | links: [
|
12 | 30 | {
|
13 |
| - title: 'Core', |
14 |
| - href: '/packages/core', |
| 31 | + title: 'Core API', |
| 32 | + href: '/core', |
15 | 33 | },
|
16 | 34 | {
|
17 |
| - title: 'Angular', |
18 |
| - href: '/packages/angular', |
| 35 | + title: 'Angular API', |
| 36 | + href: '/angular', |
19 | 37 | },
|
20 | 38 | {
|
21 |
| - title: 'Nx', |
22 |
| - href: '/packages/nx', |
| 39 | + title: 'Nx API', |
| 40 | + href: '/nx', |
23 | 41 | },
|
24 | 42 | ],
|
25 | 43 | },
|
26 | 44 | {
|
27 |
| - title: 'Core concepts', |
28 |
| - links: [{ title: 'Testing', href: '/testing' }], |
29 |
| - }, |
30 |
| - // { |
31 |
| - // title: 'Advanced guides', |
32 |
| - // links: [ |
33 |
| - // { title: 'Writing plugins', href: '/docs/writing-plugins' }, |
34 |
| - // { title: 'Neuralink integration', href: '/docs/neuralink-integration' }, |
35 |
| - // { title: 'Temporal paradoxes', href: '/docs/temporal-paradoxes' }, |
36 |
| - // { title: 'Testing', href: '/docs/testing' }, |
37 |
| - // { title: 'Compile-time caching', href: '/docs/compile-time-caching' }, |
38 |
| - // { |
39 |
| - // title: 'Predictive data generation', |
40 |
| - // href: '/docs/predictive-data-generation', |
41 |
| - // }, |
42 |
| - // ], |
43 |
| - // }, |
44 |
| - // { |
45 |
| - // title: 'API reference', |
46 |
| - // links: [], |
47 |
| - // }, |
48 |
| - { |
49 |
| - title: 'Contributing', |
50 |
| - links: [{ title: 'How to contribute', href: '/how-to-contribute' }], |
| 45 | + title: 'Advanced Topics', |
| 46 | + links: [ |
| 47 | + { title: 'Framework Integrations', href: '/framework-integrations' }, |
| 48 | + { title: 'Performance Optimization', href: '/performance-optimization' }, |
| 49 | + ], |
| 50 | + }, |
| 51 | + { |
| 52 | + title: 'Best Practices', |
| 53 | + links: [ |
| 54 | + { title: 'Coding Standards', href: '/coding-standards' }, |
| 55 | + { title: 'Testing', href: '/testing' }, |
| 56 | + ], |
| 57 | + }, |
| 58 | + { |
| 59 | + title: 'Contribution', |
| 60 | + links: [ |
| 61 | + { title: 'Contribution Guide', href: '/contribution-guide' }, |
| 62 | + { title: 'Code of Conduct', href: '/code-of-conduct' }, |
| 63 | + ], |
| 64 | + }, |
| 65 | + { |
| 66 | + title: 'FAQ', |
| 67 | + links: [ |
| 68 | + { title: 'Frequently Asked Questions', href: '/frequently-asked-questions' }, |
| 69 | + { title: 'Troubleshooting', href: '/troubleshooting' }, |
| 70 | + ], |
| 71 | + }, |
| 72 | + { |
| 73 | + title: 'Changelog', |
| 74 | + links: [{ title: 'Version History', href: 'https://github.com/IKatsuba/mutates/releases' }], |
| 75 | + }, |
| 76 | + { |
| 77 | + title: 'License', |
| 78 | + links: [ |
| 79 | + { title: 'Apache License', href: 'https://github.com/ikatsuba/mutates/blob/main/LICENSE' }, |
| 80 | + ], |
51 | 81 | },
|
52 | 82 | ];
|
0 commit comments