-
-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7f63ca7
commit d43d29c
Showing
2 changed files
with
38 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |