Skip to content

Commit c89a6fe

Browse files
committed
docs: update
1 parent 0e9155d commit c89a6fe

File tree

3 files changed

+15
-8
lines changed

3 files changed

+15
-8
lines changed

docs/app.config.ts

+8-8
Original file line numberDiff line numberDiff line change
@@ -35,19 +35,14 @@ export default defineAppConfig({
3535
to: 'https://nuxt.com',
3636
target: '_blank',
3737
'aria-label': 'Nuxt Website'
38-
}, {
39-
icon: 'i-simple-icons-discord',
40-
to: 'https://discord.com/invite/ps2h6QT',
41-
target: '_blank',
42-
'aria-label': 'Nuxt UI on Discord'
4338
}, {
4439
icon: 'i-simple-icons-x',
4540
to: 'https://x.com/nuxt_js',
4641
target: '_blank',
4742
'aria-label': 'Nuxt on X'
4843
}, {
4944
icon: 'i-simple-icons-github',
50-
to: 'https://github.com/atinux/nuxthub',
45+
to: 'https://github.com/nuxt-hub/core',
5146
target: '_blank',
5247
'aria-label': 'NuxtHub on GitHub'
5348
}]
@@ -56,11 +51,16 @@ export default defineAppConfig({
5651
title: 'Table of Contents',
5752
bottom: {
5853
title: 'Community',
59-
edit: 'https://github.com/atinux/nuxthub/edit/main/content',
54+
edit: 'https://github.com/nuxt-hub/core/edit/main/content',
6055
links: [{
6156
icon: 'i-heroicons-star',
6257
label: 'Star on GitHub',
63-
to: 'https://github.com/atinux/nuxthub',
58+
to: 'https://github.com/nuxt-hub/core',
59+
target: '_blank',
60+
}, {
61+
icon: 'i-simple-icons-nuxtdotjs',
62+
label: 'NuxtHub Console',
63+
to: 'https://hub.nuxt.com',
6464
target: '_blank',
6565
}]
6666
}

docs/components/Header.vue

+3
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ const { header } = useAppConfig()
2222
</template>
2323

2424
<template #right>
25+
<UButton to="https://hub.nuxt.com/?utm_source=nuxthub-docs&utm_medium=header" external icon="i-simple-icons-nuxtdotjs" variant="outline" class="hidden sm:inline-flex">
26+
NuxtHub Console
27+
</UButton>
2528
<UDocsSearchButton v-if="header?.search" :label="null" class="lg:hidden" />
2629

2730
<UColorModeButton v-if="header?.colorMode" />

docs/content/1.getting-started/2.installation.md

+4
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ export default defineNuxtConfig({
3838

3939
That's it! You can now use the NuxtHub module in your Nuxt project.
4040

41+
::callout
42+
The module will create a `.hub` directory in your project root, which contains the necessary configuration files and resources for the module to work. It will also add it to the `.gitignore` file to avoid committing it to your repository.
43+
::
44+
4145
## Options
4246

4347
| Key | Default | Description |

0 commit comments

Comments
 (0)