Add roadmap and feature requests
This commit is contained in:
parent
59c21511ad
commit
dcc8b9fa62
|
@ -49,6 +49,9 @@ export default {
|
||||||
return this.$store.getters['open/workspaces/getCurrent']()
|
return this.$store.getters['open/workspaces/getCurrent']()
|
||||||
},
|
},
|
||||||
customDomainOptions () {
|
customDomainOptions () {
|
||||||
|
if (!this.workspace || !this.workspace.custom_domains) {
|
||||||
|
return []
|
||||||
|
}
|
||||||
return this.workspace.custom_domains.map((domain) => {
|
return this.workspace.custom_domains.map((domain) => {
|
||||||
return {
|
return {
|
||||||
name: domain,
|
name: domain,
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="w-full">
|
<div class="w-full">
|
||||||
<div class="grid md:grid-cols-3 my-8">
|
<div class="grid md:grid-cols-3 my-8">
|
||||||
<div class="flex mt-2">
|
<div class="flex mt-2 items-center">
|
||||||
<p class="text-sm text-gray-600 dark:text-gray-400 text-center w-full">
|
<p class="text-sm text-gray-600 dark:text-gray-400 text-center w-full">
|
||||||
© Copyright {{ currYear }}. All Rights Reserved
|
© Copyright {{ currYear }}. All Rights Reserved
|
||||||
</p>
|
</p>
|
||||||
|
@ -14,24 +14,33 @@
|
||||||
</span>
|
</span>
|
||||||
</router-link>
|
</router-link>
|
||||||
</div>
|
</div>
|
||||||
<ul class="flex justify-center mt-5 md:mt-1">
|
<div class="flex justify-center mt-5 md:mt-0">
|
||||||
<li class="mr-10">
|
<div class="grid grid-cols-1 lg:grid-cols-2 gap-x-4 gap-y-2">
|
||||||
<router-link :to="{name:'privacy-policy'}" class="text-gray-600 dark:text-gray-400 transition-colors duration-300 hover:text-nt-blue">
|
<a href="https://opnform.featurebase.app/" target="_blank"
|
||||||
|
class="text-gray-600 dark:text-gray-400 transition-colors duration-300 hover:text-nt-blue">
|
||||||
|
Feature Requests
|
||||||
|
</a>
|
||||||
|
<a href="https://opnform.featurebase.app/roadmap" target="_blank"
|
||||||
|
class="text-gray-600 dark:text-gray-400 transition-colors duration-300 hover:text-nt-blue">
|
||||||
|
Roadmap
|
||||||
|
</a>
|
||||||
|
<router-link :to="{name:'privacy-policy'}"
|
||||||
|
class="text-gray-600 dark:text-gray-400 transition-colors duration-300 hover:text-nt-blue">
|
||||||
Privacy Policy
|
Privacy Policy
|
||||||
</router-link>
|
</router-link>
|
||||||
</li>
|
|
||||||
<li class="list-disc pl-3">
|
<router-link :to="{name:'terms-conditions'}"
|
||||||
<router-link :to="{name:'terms-conditions'}" class="text-gray-600 dark:text-gray-400 transition-colors duration-300 hover:text-nt-blue">
|
class="text-gray-600 dark:text-gray-400 transition-colors duration-300 hover:text-nt-blue">
|
||||||
Terms & Conditions
|
Terms & Conditions
|
||||||
</router-link>
|
</router-link>
|
||||||
</li>
|
</div>
|
||||||
</ul>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { mapGetters } from 'vuex'
|
import {mapGetters} from 'vuex'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
data: () => ({
|
data: () => ({
|
||||||
|
@ -52,7 +61,8 @@ export default {
|
||||||
featureRequestsUrl: () => window.config.links.feature_requests
|
featureRequestsUrl: () => window.config.links.feature_requests
|
||||||
},
|
},
|
||||||
|
|
||||||
mounted () {},
|
mounted() {
|
||||||
|
},
|
||||||
|
|
||||||
methods: {}
|
methods: {}
|
||||||
}
|
}
|
||||||
|
|
|
@ -56,22 +56,17 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import OpenFormFooter from '../../components/pages/OpenFormFooter.vue'
|
import OpenFormFooter from '~/components/pages/OpenFormFooter.vue'
|
||||||
import Testimonials from '../../components/pages/welcome/Testimonials.vue'
|
import LoginForm from "./components/LoginForm.vue";
|
||||||
import LoginForm from './components/LoginForm.vue'
|
|
||||||
import SeoMeta from '../../mixins/seo-meta.js'
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
OpenFormFooter,
|
OpenFormFooter,
|
||||||
Testimonials,
|
|
||||||
LoginForm
|
LoginForm
|
||||||
},
|
},
|
||||||
|
|
||||||
middleware: 'guest',
|
middleware: 'guest',
|
||||||
|
|
||||||
mixins: [SeoMeta],
|
|
||||||
|
|
||||||
data: () => ({
|
data: () => ({
|
||||||
metaTitle: 'Login',
|
metaTitle: 'Login',
|
||||||
}),
|
}),
|
||||||
|
|
Loading…
Reference in New Issue