Skip to content

Commit 576d882

Browse files
committed
docs: restructure documentation and update project links
1 parent f98e635 commit 576d882

35 files changed

+66
-26
lines changed

apps/www/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Docs
22

3-
This is the documentation for [AI Elements Vue](https://github.com/cwandev/ai-elements-vue).
3+
This is the documentation for [AI Elements Vue](https://github.com/vuepont/ai-elements-vue).
44

55
## Setup
66

apps/www/app.config.ts

Lines changed: 27 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,17 @@ export default defineAppConfig({
2727
links: [{
2828
title: 'Getting Started',
2929
to: '/overview/introduction',
30-
description: 'Introduction to AI Elements Vue',
30+
description: 'What is AI Elements Vue and why you should use it',
3131
target: '_self',
3232
}, {
33-
title: 'Setup',
34-
to: '/overview/setup',
35-
description: 'Follow the step-by-step guide to install AI Elements Vue in your project',
33+
title: 'Examples',
34+
to: '/examples',
35+
description: 'Real-world examples showing how to build applications with AI Elements Vue',
3636
target: '_self',
3737
}, {
38-
title: 'Usage',
39-
to: '/overview/usage',
40-
description: 'Learn how to use AI Elements Vue in your project',
38+
title: 'Components',
39+
to: '/components/chatbot',
40+
description: 'Explore the components and usage examples of AI Elements Vue',
4141
target: '_self',
4242
}],
4343
}, {
@@ -57,20 +57,28 @@ export default defineAppConfig({
5757
title: 'Community',
5858
links: [{
5959
title: 'GitHub',
60-
to: 'https://github.com/cwandev/ai-elements-vue',
61-
description: 'Source code for AI Elements Vue',
60+
to: 'https://github.com/vuepont/ai-elements-vue',
61+
description: 'View the source code on GitHub',
62+
target: '_blank',
63+
}, {
64+
title: 'Discord',
65+
to: 'https://discord.gg/fxBU6M5Jyh',
66+
description: 'Join our Discord server to get help and connect with other developers',
6267
target: '_blank',
6368
}],
6469
}],
6570
links: [{
6671
icon: 'lucide:github',
67-
to: 'https://github.com/cwandev/ai-elements-vue',
72+
to: 'https://github.com/vuepont/ai-elements-vue',
6873
target: '_blank',
6974
}],
7075
},
7176
aside: {
72-
useLevel: false,
73-
collapse: false,
77+
useLevel: true,
78+
levelStyle: 'aside',
79+
collapse: true,
80+
collapseLevel: 1,
81+
folderStyle: 'default',
7482
},
7583
main: {
7684
breadCrumb: true,
@@ -80,7 +88,11 @@ export default defineAppConfig({
8088
credits: 'Copyright © 2025',
8189
links: [{
8290
icon: 'lucide:github',
83-
to: 'https://github.com/cwandev/ai-elements-vue',
91+
to: 'https://github.com/vuepont/ai-elements-vue',
92+
target: '_blank',
93+
}, {
94+
icon: 'simple-icons:discord',
95+
to: 'https://discord.gg/fxBU6M5Jyh',
8496
target: '_blank',
8597
}],
8698
},
@@ -89,12 +101,12 @@ export default defineAppConfig({
89101
links: [{
90102
title: 'Star on GitHub',
91103
icon: 'lucide:star',
92-
to: 'https://github.com/cwandev/ai-elements-vue',
104+
to: 'https://github.com/vuepont/ai-elements-vue',
93105
target: '_blank',
94106
}, {
95107
title: 'Create Issues',
96108
icon: 'lucide:circle-dot',
97-
to: 'https://github.com/cwandev/ai-elements-vue/issues',
109+
to: 'https://github.com/vuepont/ai-elements-vue/issues',
98110
target: '_blank',
99111
}],
100112
},

apps/www/components/CodeViewerTab.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ function updateImportPaths(code: string) {
9494
:code="rawString"
9595
>
9696
<CodeCopy
97-
class="absolute -top-10 right-0"
97+
class="absolute -top-12 right-0"
9898
:code="rawString"
9999
/>
100100
<code class="min-w-full overflow-auto px-2 leading-4">

apps/www/content/1.overview/1.Introduction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description:
44
icon: lucide:info
55
---
66

7-
[AI Elements Vue](https://github.com/cwandev/ai-elements-vue) is the Vue port of [AI-Elements](https://github.com/vercel/ai-elements), a component library and custom registry built on top of [shadcn-vue](https://shadcn-vue.com/) to help you build AI-native applications faster. It provides pre-built components like conversations, messages and more.
7+
[AI Elements Vue](https://github.com/vuepont/ai-elements-vue) is the Vue port of [AI-Elements](https://github.com/vercel/ai-elements), a component library and custom registry built on top of [shadcn-vue](https://shadcn-vue.com/) to help you build AI-native applications faster. It provides pre-built components like conversations, messages and more.
88

99
You can install it with:
1010

@@ -66,4 +66,4 @@ You can install it with:
6666
:::ComponentLoader{label="CodeBlock" componentName="CodeBlock"}
6767
:::
6868

69-
View the [source code](https://github.com/cwandev/ai-elements-vue) for all components on GitHub.
69+
View the [source code](https://github.com/vuepont/ai-elements-vue) for all components on GitHub.

apps/www/content/2.components/_dir.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
title: Examples
2+
icon: lucide:code
3+
navigation.redirect: /examples/workflow
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
title: Chatbot
2+
icon: lucide:bot
3+
navigation.redirect: /components/chatbot/actions
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)