Skip to content

Commit cd7ee6d

Browse files
committed
migrating the content and sidebar from tools doc
Added the initial content from the tools doc Created the sidebar with the architecture PlaceHolders pages created.
1 parent 6f63854 commit cd7ee6d

File tree

136 files changed

+11284
-14
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

136 files changed

+11284
-14
lines changed

.vitepress/config.mts

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { transformerTwoslash } from '@shikijs/vitepress-twoslash';
22
import tailwindcss from '@tailwindcss/vite';
33
import { defineConfig } from 'vitepress';
4+
import { getSidebar } from './sidebar';
45

56
// https://vitepress.dev/reference/site-config
67
export default defineConfig({
@@ -76,25 +77,17 @@ export default defineConfig({
7677
// https://vitepress.dev/reference/default-theme-config
7778
nav: [
7879
{ text: 'Home', link: '/' },
79-
{
80-
text: 'Markdown Examples',
81-
link: '/markdown-examples',
82-
},
80+
{ text: 'Overview', link: '/overview/what-we-do' },
81+
{ text: 'Protect Data', link: '/manage_data/guides' },
82+
{ text: 'Build iApp', link: '/build_iapp/iapp-generator/what-is-iapp' },
83+
{ text: 'Use iApp', link: '/use_iapp/introduction' },
84+
{ text: 'Deep Dive', link: '/deep_dive/sdk' },
8385
],
8486
outline: {
8587
level: [2, 3],
8688
},
8789

88-
sidebar: [
89-
{
90-
text: 'Home',
91-
link: '/index',
92-
},
93-
{
94-
text: 'Markdown Examples',
95-
link: '/markdown-examples',
96-
},
97-
],
90+
sidebar: getSidebar(),
9891

9992
search: {
10093
provider: 'local',

0 commit comments

Comments
 (0)