Skip to content

Commit 0d1dd74

Browse files
committed
up
1 parent 6a50e46 commit 0d1dd74

File tree

14 files changed

+232
-551
lines changed

14 files changed

+232
-551
lines changed

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,24 @@
11
# Nuxt Docs Template
22

33
[![Nuxt UI](https://img.shields.io/badge/Made%20with-Nuxt%20UI-00DC82?logo=nuxt&labelColor=020420)](https://ui.nuxt.com)
4-
[![Deploy to NuxtHub](https://img.shields.io/badge/Deploy%20to-NuxtHub-00DC82?logo=nuxt&labelColor=020420)](https://hub.nuxt.com/new?repo=nuxt-ui-pro/docs)
54

65
This template lets you build a documentation with [Nuxt UI](https://ui.nuxt.com) quickly.
76

87
- [Live demo](https://docs-template.nuxt.dev/)
9-
- [Documentation](https://ui.nuxt.com/getting-started/installation/pro/nuxt)
8+
- [Documentation](https://ui.nuxt.com/getting-started/installation)
109

1110
<a href="https://docs-template.nuxt.dev/" target="_blank">
1211
<picture>
13-
<source media="(prefers-color-scheme: dark)" srcset="https://assets.hub.nuxt.com/eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1cmwiOiJodHRwczovL2RvY3MtdGVtcGxhdGUubnV4dC5kZXYiLCJpYXQiOjE3Mzk0NjM0MTd9.ltVAqPgKG38O01X1zl6MXfrJc55nf9OewXNFjpZ_2JY.jpg?theme=dark">
14-
<source media="(prefers-color-scheme: light)" srcset="https://assets.hub.nuxt.com/eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1cmwiOiJodHRwczovL2RvY3MtdGVtcGxhdGUubnV4dC5kZXYiLCJpYXQiOjE3Mzk0NjM0MTd9.ltVAqPgKG38O01X1zl6MXfrJc55nf9OewXNFjpZ_2JY.jpg?theme=light">
15-
<img alt="Nuxt Docs Template" src="https://assets.hub.nuxt.com/eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1cmwiOiJodHRwczovL2RvY3MtdGVtcGxhdGUubnV4dC5kZXYiLCJpYXQiOjE3Mzk0NjM0MTd9.ltVAqPgKG38O01X1zl6MXfrJc55nf9OewXNFjpZ_2JY.jpg">
12+
<source media="(prefers-color-scheme: dark)" srcset="https://ui4.nuxt.com/assets/templates/nuxt/docs-dark.png">
13+
<source media="(prefers-color-scheme: light)" srcset="https://ui4.nuxt.com/assets/templates/nuxt/docs-light.png">
14+
<img alt="Nuxt Docs Template" src="https://ui4.nuxt.com/assets/templates/nuxt/docs-light.png">
1615
</picture>
1716
</a>
1817

1918
## Quick Start
2019

2120
```bash [Terminal]
22-
npx nuxi init -t github:nuxt-ui-pro/docs
21+
npx nuxi init -t github:nuxt-ui-templates/docs
2322
```
2423

2524
## Setup

app/app.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export default defineAppConfig({
2626
colorMode: true,
2727
links: [{
2828
'icon': 'i-simple-icons-github',
29-
'to': 'https://github.com/nuxt-ui-pro/docs',
29+
'to': 'https://github.com/nuxt-ui-templates/docs',
3030
'target': '_blank',
3131
'aria-label': 'GitHub'
3232
}]
@@ -60,7 +60,7 @@ export default defineAppConfig({
6060
title: 'Table of Contents',
6161
bottom: {
6262
title: 'Community',
63-
edit: 'https://github.com/nuxt-ui-pro/docs/edit/main/content',
63+
edit: 'https://github.com/nuxt-ui-templates/docs/edit/main/content',
6464
links: [{
6565
icon: 'i-lucide-star',
6666
label: 'Star on GitHub',

app/components/AppHeader.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const { header } = useAppConfig()
3939
#left
4040
>
4141
<NuxtLink :to="header?.to || '/'">
42-
<UILogo class="w-auto h-6 shrink-0" />
42+
<AppLogo class="w-auto h-6 shrink-0" />
4343
</NuxtLink>
4444

4545
<TemplateMenu />
File renamed without changes.

app/components/TemplateMenu.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
:modal="false"
55
:items="[{
66
label: 'Starter',
7-
to: 'https://ui-pro-starter.nuxt.dev/'
7+
to: 'https://starter-template.nuxt.dev/'
88
}, {
99
label: 'Landing',
1010
to: 'https://landing-template.nuxt.dev/'

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ Use this template on Nuxt Studio and start your documentation in seconds.
1414
You can start a fresh new project with:
1515

1616
```bash [Terminal]
17-
npx nuxi init -t github:nuxt-ui-pro/docs
17+
npx nuxi init -t github:nuxt-ui-templates/docs
1818
```
1919

2020
or create a new repository from GitHub:
2121

22-
1. Open <https://github.com/nuxt-ui-pro/docs>
22+
1. Open <https://github.com/nuxt-ui-templates/docs>
2323
2. Click on `Use this template` button
2424
3. Enter repository name and click on `Create repository from template` button
2525
4. Clone your new repository

content/1.getting-started/3.usage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export default defineAppConfig({
4545
// Customize links
4646
links: [{
4747
'icon': 'i-simple-icons-github',
48-
'to': 'https://github.com/nuxt-ui-pro/docs',
48+
'to': 'https://github.com/nuxt-ui-templates/docs',
4949
'target': '_blank',
5050
'aria-label': 'GitHub'
5151
}]
@@ -100,7 +100,7 @@ export default defineAppConfig({
100100
// Title of the bottom table of contents
101101
title: 'Community',
102102
// URL of your repository content folder
103-
edit: 'https://github.com/nuxt-ui-pro/docs/edit/main/content',
103+
edit: 'https://github.com/nuxt-ui-templates/docs/edit/main/content',
104104
links: [{
105105
icon: 'i-lucide-star',
106106
label: 'Star on GitHub',

content/2.essentials/1.markdown-syntax.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Each title and subtitle creates an anchor and shows up automatically in the tabl
4343

4444
## Text Formatting
4545

46-
Nuxt UI Pro supports most Markdown formatting options.
46+
Nuxt UI supports most Markdown formatting options.
4747

4848
| Style | How to use | Result |
4949
| ------ | ------------ | ---------- |
@@ -75,11 +75,11 @@ To create a link, wrap the link text in brackets `[]()`.
7575
---
7676
class: "[&>div]:*:my-0"
7777
---
78-
[Nuxt UI Pro](https://ui.nuxt.com/getting-started/installation/pro/nuxt)
78+
[Nuxt UI](https://ui.nuxt.com/getting-started/installation)
7979

8080
#code
8181
```mdc
82-
[Nuxt UI Pro](https://ui.nuxt.com/getting-started/installation/pro/nuxt)
82+
[Nuxt UI](https://ui.nuxt.com/getting-started/installation)
8383
```
8484
::
8585

@@ -201,11 +201,11 @@ Single-line blockquotes are best for short, impactful quotes or citations that f
201201
---
202202
class: "[&>div]:*:my-0"
203203
---
204-
> Nuxt UI Pro is a collection of Vue components, composables and utils built on top of Nuxt UI, oriented on structure and layout and designed to be used as building blocks for your app.
204+
> Nuxt UI is a collection of Vue components, composables and utils designed to create beautiful and accessible user interfaces.
205205
206206
#code
207207
```mdc
208-
> Nuxt UI Pro is a collection of Vue components, composables and utils built on top of Nuxt UI, oriented on structure and layout and designed to be used as building blocks for your app.
208+
> Nuxt UI is a collection of Vue components, composables and utils designed to create beautiful and accessible user interfaces.
209209
```
210210
::
211211

@@ -217,14 +217,14 @@ Multi-line blockquotes are suitable for longer quotes or when you need to includ
217217
---
218218
class: "[&>div]:*:my-0"
219219
---
220-
> Nuxt UI Pro is a collection of Vue components, composables and utils built on top of Nuxt UI, oriented on structure and layout and designed to be used as building blocks for your app.
220+
> Nuxt UI is a collection of Vue components, composables and utils designed to create beautiful and accessible user interfaces.
221221
>
222-
> Create beautiful, responsive, and accessible Vue applications with Nuxt UI Pro.
222+
> Create beautiful, responsive, and accessible Vue applications with Nuxt UI.
223223
224224
#code
225225
```mdc
226-
> Nuxt UI Pro is a collection of Vue components, composables and utils built on top of Nuxt UI, oriented on structure and layout and designed to be used as building blocks for your app.
226+
> Nuxt UI is a collection of Vue components, composables and utils designed to create beautiful and accessible user interfaces.
227227
>
228-
> Create beautiful, responsive, and accessible Vue applications with Nuxt UI Pro.
228+
> Create beautiful, responsive, and accessible Vue applications with Nuxt UI.
229229
```
230230
::

content/2.essentials/3.prose-components.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ class: "[&>div]:*:my-0 [&>div]:*:w-full"
143143
icon: i-simple-icons-github
144144
target: _blank
145145
title: Dashboard
146-
to: https://github.com/nuxt-ui-pro/dashboard
146+
to: https://github.com/nuxt-ui-templates/dashboard
147147
---
148148
A dashboard with multi-column layout.
149149
:::
@@ -154,7 +154,7 @@ class: "[&>div]:*:my-0 [&>div]:*:w-full"
154154
---
155155
title: Dashboard
156156
icon: i-simple-icons-github
157-
to: https://github.com/nuxt-ui-pro/dashboard
157+
to: https://github.com/nuxt-ui-templates/dashboard
158158
target: _blank
159159
---
160160
A dashboard with multi-column layout.
@@ -173,7 +173,7 @@ Use `card-group` to arrange cards in a grid layout. `card-group` is ideal for di
173173
icon: i-simple-icons-github
174174
target: _blank
175175
title: Dashboard
176-
to: https://github.com/nuxt-ui-pro/dashboard
176+
to: https://github.com/nuxt-ui-templates/dashboard
177177
---
178178
A dashboard with multi-column layout.
179179
::::
@@ -183,7 +183,7 @@ Use `card-group` to arrange cards in a grid layout. `card-group` is ideal for di
183183
icon: i-simple-icons-github
184184
target: _blank
185185
title: SaaS
186-
to: https://github.com/nuxt-ui-pro/saas
186+
to: https://github.com/nuxt-ui-templates/saas
187187
---
188188
A template with landing, pricing, docs and blog.
189189
::::
@@ -193,7 +193,7 @@ Use `card-group` to arrange cards in a grid layout. `card-group` is ideal for di
193193
icon: i-simple-icons-github
194194
target: _blank
195195
title: Docs
196-
to: https://github.com/nuxt-ui-pro/docs
196+
to: https://github.com/nuxt-ui-templates/docs
197197
---
198198
A documentation with `@nuxt/content`.
199199
::::
@@ -203,7 +203,7 @@ Use `card-group` to arrange cards in a grid layout. `card-group` is ideal for di
203203
icon: i-simple-icons-github
204204
target: _blank
205205
title: Landing
206-
to: https://github.com/nuxt-ui-pro/landing
206+
to: https://github.com/nuxt-ui-templates/landing
207207
---
208208
A landing page you can use as starting point.
209209
::::
@@ -217,7 +217,7 @@ Use `card-group` to arrange cards in a grid layout. `card-group` is ideal for di
217217
---
218218
title: Dashboard
219219
icon: i-simple-icons-github
220-
to: https://github.com/nuxt-ui-pro/dashboard
220+
to: https://github.com/nuxt-ui-templates/dashboard
221221
target: _blank
222222
---
223223
A dashboard with multi-column layout.
@@ -227,7 +227,7 @@ A dashboard with multi-column layout.
227227
---
228228
title: SaaS
229229
icon: i-simple-icons-github
230-
to: https://github.com/nuxt-ui-pro/saas
230+
to: https://github.com/nuxt-ui-templates/saas
231231
target: _blank
232232
---
233233
A template with landing, pricing, docs and blog.
@@ -237,7 +237,7 @@ A template with landing, pricing, docs and blog.
237237
---
238238
title: Docs
239239
icon: i-simple-icons-github
240-
to: https://github.com/nuxt-ui-pro/docs
240+
to: https://github.com/nuxt-ui-templates/docs
241241
target: _blank
242242
---
243243
A documentation with `@nuxt/content`.
@@ -247,7 +247,7 @@ A documentation with `@nuxt/content`.
247247
---
248248
title: Landing
249249
icon: i-simple-icons-github
250-
to: https://github.com/nuxt-ui-pro/landing
250+
to: https://github.com/nuxt-ui-templates/landing
251251
target: _blank
252252
---
253253
A landing page you can use as starting point.
@@ -441,7 +441,7 @@ Set the `level` prop to define the heading level to include in the step-by-step
441441
class: "[&>div]:*:w-full"
442442
---
443443
:::steps{level="4"}
444-
#### Add the Nuxt UI Pro module in your `nuxt.config.ts`
444+
#### Add the Nuxt UI module in your `nuxt.config.ts`
445445

446446
```ts [nuxt.config.ts]
447447
export default defineNuxtConfig({
@@ -461,7 +461,7 @@ class: "[&>div]:*:w-full"
461461
````mdc
462462
::steps{level="4"}
463463
464-
#### Add the Nuxt UI Pro module in your `nuxt.config.ts`{lang="ts-type"}
464+
#### Add the Nuxt UI module in your `nuxt.config.ts`{lang="ts-type"}
465465
466466
```ts [nuxt.config.ts]
467467
export default defineNuxtConfig({

content/index.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
seo:
33
title: Nuxt Docs Template
4-
description: Nuxt UI Pro is a collection of premium Vue components built on top
5-
of Nuxt UI to create beautiful & responsive Nuxt applications in minutes.
4+
description: Nuxt UI is a collection of Vue components
5+
to create beautiful & responsive Nuxt applications in minutes.
66
---
77

88
::u-page-hero
@@ -11,19 +11,19 @@ orientation: horizontal
1111
---
1212
:::prose-pre
1313
---
14-
code: npx nuxi init -t github:nuxt-ui-pro/docs
14+
code: npx nuxi init -t github:nuxt-ui-templates/docs
1515
filename: Terminal
1616
---
1717
```bash
18-
npx nuxi init -t github:nuxt-ui-pro/docs
18+
npx nuxi init -t github:nuxt-ui-templates/docs
1919
```
2020
:::
2121

2222
#title
23-
Build your docs with Nuxt UI Pro
23+
Build your docs with Nuxt UI
2424

2525
#description
26-
Nuxt UI Pro is a collection of premium components built on top of Nuxt UI to create beautiful & responsive applications in minutes.
26+
Nuxt UI is a collection of components to create beautiful & responsive applications in minutes.
2727

2828
#links
2929
:::u-button
@@ -41,7 +41,7 @@ Nuxt UI Pro is a collection of premium components built on top of Nuxt UI to cre
4141
icon: i-simple-icons-github
4242
size: xl
4343
target: _blank
44-
to: https://github.com/nuxt-ui-pro/docs
44+
to: https://github.com/nuxt-ui-templates/docs
4545
variant: subtle
4646
---
4747
Use this template
@@ -58,11 +58,11 @@ All-in-one documentation template
5858
color: neutral
5959
size: lg
6060
target: _blank
61-
to: https://ui.nuxt.com/getting-started/installation/pro/nuxt
61+
to: https://ui.nuxt.com/getting-started/installation
6262
trailingIcon: i-lucide-arrow-right
6363
variant: subtle
6464
---
65-
Discover Nuxt UI Pro v3
65+
Discover Nuxt UI v4
6666
:::
6767

6868
#features
@@ -154,7 +154,7 @@ All-in-one documentation template
154154
target: _blank
155155
icon: i-lucide-arrow-right
156156
- label: Clone on GitHub
157-
to: 'https://github.com/nuxt-ui-pro/landing'
157+
to: 'https://github.com/nuxt-ui-templates/landing'
158158
target: _blank
159159
variant: subtle
160160
icon: i-simple-icons-github

0 commit comments

Comments
 (0)