Skip to content

Commit 57442bc

Browse files
committed
Merge branch 'help-refund-policy' into dev
2 parents bc73347 + 2fec8e7 commit 57442bc

3 files changed

Lines changed: 43 additions & 0 deletions

File tree

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,12 @@
5151
How to join a group?
5252
</router-link>
5353
</li>
54+
55+
<li>
56+
<router-link :to="{ name: 'help/refund-policy' }">
57+
What is the refund policy on DeepNotes?
58+
</router-link>
59+
</li>
5460
</ul>
5561

5662
<Gap style="height: 80px" />
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<template>
2+
<div style="font-size: 28px; font-weight: bold">{{ title }}</div>
3+
4+
<Gap style="height: 36px" />
5+
6+
<div>
7+
We offer a <b>100% refund</b> within 7 days of your purchase. No questions
8+
asked.<br />
9+
10+
<br />
11+
12+
If you are not satisfied with DeepNotes, please reach out at
13+
<a href="mailto:contact@deepnotes.app?subject=Refund Request"
14+
>contact@deepnotes.app</a
15+
>.
16+
</div>
17+
</template>
18+
19+
<script setup lang="ts">
20+
const title = 'What is the refund policy on DeepNotes?';
21+
22+
useMeta(() => ({
23+
title: `${title} - Help - DeepNotes`,
24+
}));
25+
</script>

apps/client/src/router/routes.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,18 @@ const routes: RouteRecordRaw[] = [
176176
},
177177
],
178178
},
179+
{
180+
path: 'refund-policy',
181+
component: () => import('src/pages/home/Help/HelpLayout.vue'),
182+
children: [
183+
{
184+
path: '',
185+
name: 'help/refund-policy',
186+
component: () =>
187+
import('src/pages/home/Help/Pages/RefundPolicy.vue'),
188+
},
189+
],
190+
},
179191
],
180192
},
181193

0 commit comments

Comments
 (0)