File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 " />
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments