-
Notifications
You must be signed in to change notification settings - Fork 0
/
roadmap.vue
32 lines (29 loc) · 1.48 KB
/
roadmap.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<template>
<BaseHero
title="Roadmap"
lead="Our community shape our work, so while we don't have a multi-month roadmap, it is easy to stay up to date with what has been requested and what is currently being worked on." />
<Section align="left">
<div class="grid grid-cols-2 gap-10">
<h2 class="text-purple"><NuxtLink to="https://app.kanka.io/roadmap" class="link">Roadmap</NuxtLink></h2>
<p class="text-light">The roadmap lists all ideas submitted by the community and allows users to upvote ideas they want to see added to Kanka.
</p>
</div>
<div class="grid grid-cols-2 gap-10">
<h2 class="text-purple"><NuxtLink to="https://trello.com/b/hVjPfOMU/kanka-backlog" class="link">Backlog</NuxtLink></h2>
<p class="text-light">This Trello board contains all the planned features and improvements that will one day make it to the app.</p>
</div>
<div class="grid grid-cols-2 gap-10">
<h2 class="text-purple"><NuxtLink to="https://trello.com/b/62aOwCHU/kanka-sprint" class="link">Sprint</NuxtLink></h2>
<p class="text-light">This Trello board contains all the features, improvements, and bugs that are currently being worked on.</p>
</div>
</Section>
</template>
<script setup lang="ts">
const runtimeConfig = useRuntimeConfig()
useHead({
title: 'Press Kit - Kanka',
meta: [
{ name: 'description', content: 'Thanks for your interest in Kanka! Please use the following resources when talking about us.' }
],
})
</script>