Skip to content

Commit

Permalink
docs: add roadmap (nuxt-modules#1624)
Browse files Browse the repository at this point in the history
  • Loading branch information
kazupon authored Nov 9, 2022
1 parent 3018395 commit 58e5f5f
Show file tree
Hide file tree
Showing 8 changed files with 48 additions and 24 deletions.
3 changes: 2 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ playground
specs/fixtures
test/fixtures
coverage
docs/components/content/Logo.vue
docs/components/content/Logo.vue
docs/components/content/VoltaBoard.vue
13 changes: 13 additions & 0 deletions docs/components/content/VoltaBoard.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<template>
<iframe :src="src" class="w-full min-h-[calc(100vh/1.5)] border u-border-gray-200 shadow-lg rounded-md" />
</template>

<script setup lang="ts">
const props = defineProps({
token: {
type: String,
required: true
}
})
const src = computed(() => `https://volta.net/embed/${props.token}`)
</script>
7 changes: 7 additions & 0 deletions docs/content/60.roadmap.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: Roadmap
description: Discover our kaban board for the next release of the @nuxtjs/i18n module.
toc: false
---

:volta-board{token="eyJzdGF0dXNlcyI6WyJ0cmlhZ2UiLCJiYWNrbG9nIiwidG9kbyIsImluX3Byb2dyZXNzIiwiaW5fcmV2aWV3IiwiZG9uZSIsInJlbGVhc2VkIiwiY2FuY2VsbGVkIl0sImZpbHRlcnMiOnt9LCJvd25lciI6Im51eHQtY29tbXVuaXR5IiwibmFtZSI6ImkxOG4tbW9kdWxlIn0"}
9 changes: 9 additions & 0 deletions docs/content/99.changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
layout: docs
toc: false
title: Changelog
description: Discover the latest updates.
---

::releases
::
6 changes: 0 additions & 6 deletions docs/content/99.releases.md

This file was deleted.

2 changes: 1 addition & 1 deletion docs/content/_theme.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
title: '@nuxtjs/i18n'
description: I18n (Internationalization) for your Nuxt Application
layout: docs
url: 'https://i18n.nuxtjs.org'
url: 'https://v8.i18n.nuxtjs.org'
debug: false
socials:
github: 'nuxt-community/i18n-module'
Expand Down
4 changes: 2 additions & 2 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"preview": "nuxi preview"
},
"devDependencies": {
"@docus/docs-theme": "npm:@docus/docs-theme-edge@3.0.0-1138f93",
"@docus/github": "npm:@docus/github-edge@1.2.6-1138f93",
"@docus/docs-theme": "npm:@docus/docs-theme-edge@latest",
"@docus/github": "npm:@docus/github-edge@latest",
"nuxt": "latest",
"vue-plausible": "^1.3.2"
}
Expand Down
28 changes: 14 additions & 14 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 58e5f5f

Please sign in to comment.