You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/content/index.yml
+17-10
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
1
title: 'NuxtHub'
2
-
description: 'Build full-stack applications on Cloudflare, with zero configuration.'
2
+
description: 'Build full-stack Nuxt apps, with zero configuration.'
3
3
navigation: false
4
4
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.'
7
7
orientation: horizontal
8
8
links:
9
9
- label: Get started
@@ -18,8 +18,15 @@ hero:
18
18
to: https://github.com/atinux/nuxthub
19
19
target: _blank
20
20
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
+
})
23
30
```
24
31
features:
25
32
title: 'All you need for full-stack apps'
@@ -31,15 +38,15 @@ features:
31
38
size: lg
32
39
items:
33
40
- title: 'Database'
34
-
description: 'SQLite model-oriented databases with auto-migrations.'
41
+
description: 'Access to a SQLite database in your server with zero configuration.'
35
42
icon: 'i-ph-database'
36
43
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.'
39
46
icon: 'i-ph-coin'
40
47
to: '/usage/kv'
41
48
- 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.'
43
50
icon: 'i-ph-shapes'
44
51
to: '/usage/blob'
45
52
- title: 'Nuxt 3'
@@ -48,7 +55,7 @@ features:
48
55
to: 'https://nuxt.com'
49
56
target: '_blank'
50
57
- title: 'Cloudflare Pages'
51
-
description: 'Using Cloudflare Pages for edge rendering.'
58
+
description: 'Deploy on Cloudflare Pages for edge-side rendering.'
0 commit comments