Skip to content

Commit 32d5e0d

Browse files
committed
docs: update
1 parent 399b3f7 commit 32d5e0d

File tree

1 file changed

+17
-10
lines changed

1 file changed

+17
-10
lines changed

docs/content/index.yml

+17-10
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
title: 'NuxtHub'
2-
description: 'Build full-stack applications on Cloudflare, with zero configuration.'
2+
description: 'Build full-stack Nuxt apps, with zero configuration.'
33
navigation: false
44
hero:
5-
title: 'Nuxt,<br>Full-Stack,<br>on the Edge'
6-
description: 'The Nuxt Toolkit to create full-stack applications on the Edge powered by Cloudflare.'
5+
title: 'Build full-stack <span class="text-primary">Nuxt apps</span>, on the edge.'
6+
description: 'Access to a Database, Key-Value, and Blob storage with zero configuration. Deploy with confidence on your Cloudflare account and access to your data locally with a secured proxy.'
77
orientation: horizontal
88
links:
99
- label: Get started
@@ -18,8 +18,15 @@ hero:
1818
to: https://github.com/atinux/nuxthub
1919
target: _blank
2020
code: |
21-
```bash [Terminal]
22-
npx nuxthub deploy
21+
```ts [server/api/hello.ts]
22+
export default eventHandler(async (event) => {
23+
const database = useDatabase()
24+
const blob = useBlob()
25+
const kv = useKV()
26+
27+
// Do your magic here
28+
return { hello: 'world' }
29+
})
2330
```
2431
features:
2532
title: 'All you need for full-stack apps'
@@ -31,15 +38,15 @@ features:
3138
size: lg
3239
items:
3340
- title: 'Database'
34-
description: 'SQLite model-oriented databases with auto-migrations.'
41+
description: 'Access to a SQLite database in your server with zero configuration.'
3542
icon: 'i-ph-database'
3643
to: '/usage/database'
37-
- title: 'KV'
38-
description: 'Global, low-latency, key-value data storage.'
44+
- title: 'Key-Value'
45+
description: 'Global, low-latency, key-value data storage in development and production.'
3946
icon: 'i-ph-coin'
4047
to: '/usage/kv'
4148
- title: 'Blob'
42-
description: 'Large storage of unstructured data.'
49+
description: 'Large storage of unstructured data to put anything inside and serve it as you want.'
4350
icon: 'i-ph-shapes'
4451
to: '/usage/blob'
4552
- title: 'Nuxt 3'
@@ -48,7 +55,7 @@ features:
4855
to: 'https://nuxt.com'
4956
target: '_blank'
5057
- title: 'Cloudflare Pages'
51-
description: 'Using Cloudflare Pages for edge rendering.'
58+
description: 'Deploy on Cloudflare Pages for edge-side rendering.'
5259
icon: 'i-simple-icons-cloudflare'
5360
to: 'https://developers.cloudflare.com/pages'
5461
target: '_blank'

0 commit comments

Comments
 (0)