Skip to content

Commit

Permalink
Add tours page outline
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmybisenius committed Feb 1, 2021
1 parent 7f63ca7 commit d43d29c
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
2 changes: 1 addition & 1 deletion client/layouts/dashboard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@
<a
style="margin-right:.5rem !important;"
class="text-indigo-600 flex flex-row items-center justify-center bg-indigo-100 hover:bg-indigo-200 rounded-full py-1 px-3 font-medium"
href="/dashboard/account"
href="/dashboard/tours"
>
<img src="/Tour.svg" class="w-4 h-auto opacity-50" style="margin-right:.45rem !important;"/>
Tours</a>
Expand Down
37 changes: 37 additions & 0 deletions client/pages/dashboard/tours.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<template>
<section class="flex flex-shrink-0 flex-col p-8 items-center bg-gray-100 overflow-x-hidden overflow-y-scroll">
<h1 class="text-gray-800 font-semibold text-2xl w-full mb-2">
{{ app_name }} tours
</h1>
<p class="text-gray-600 w-full text-left mb-4">New to {{ app_name }}? Take our various product tours below to learn everything you need to know!</p>
</section>
</template>

<script lang="ts">
import Vue from "vue";
export default Vue.extend({
name: 'Tours',
layout: 'dashboard',
middleware: 'authenticated',
data: () => {
return {
app_name: process.env.APP_NAME
};
}
});
</script>

<style lang="scss">
/**
Animations
*/
.fade-enter-active, .fade-leave-active {
transition: opacity .25s;
}
.fade-enter, .fade-leave-to {
opacity: 0;
}
</style>

0 comments on commit d43d29c

Please sign in to comment.