Skip to content

Commit 8dc7991

Browse files
committed
ui(help): add roadmap help page
1 parent 45da3a3 commit 8dc7991

File tree

3 files changed

+43
-0
lines changed

3 files changed

+43
-0
lines changed

apps/client/src/pages/home/Help/Help.vue

+6
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,12 @@
3434
</router-link>
3535
</li>
3636

37+
<li>
38+
<router-link :to="{ name: 'help/roadmap' }">
39+
Is there a roadmap?
40+
</router-link>
41+
</li>
42+
3743
<li>
3844
<router-link :to="{ name: 'help/creating-group' }">
3945
How to create a group?
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<template>
2+
<div style="font-size: 28px; font-weight: bold">{{ title }}</div>
3+
4+
<Gap style="height: 36px" />
5+
6+
<div>
7+
Yes, it is available at:
8+
9+
<div>
10+
<a
11+
href="https://deepnotes.app/pages/voEG2WDb5e2x1Ep6hjwVp"
12+
target="_blank"
13+
>
14+
https://deepnotes.app/pages/voEG2WDb5e2x1Ep6hjwVp
15+
</a>
16+
</div>
17+
</div>
18+
</template>
19+
20+
<script setup lang="ts">
21+
const title = 'Is there a roadmap?';
22+
23+
useMeta(() => ({
24+
title: `${title} - Help - DeepNotes`,
25+
}));
26+
</script>

apps/client/src/router/routes.ts

+11
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,17 @@ const routes: RouteRecordRaw[] = [
200200
},
201201
],
202202
},
203+
{
204+
path: 'roadmap',
205+
component: () => import('src/pages/home/Help/HelpLayout.vue'),
206+
children: [
207+
{
208+
path: '',
209+
name: 'help/roadmap',
210+
component: () => import('src/pages/home/Help/Pages/Roadmap.vue'),
211+
},
212+
],
213+
},
203214
],
204215
},
205216

0 commit comments

Comments
 (0)