opnform/client/components/pages/OpenFormFooter.vue

65 lines
2.0 KiB
Vue
Raw Normal View History

2023-12-09 14:47:03 +00:00
<template>
<div class="w-full">
<div class="grid md:grid-cols-3 my-8">
<div class="flex mt-2">
<p class="text-sm text-gray-600 dark:text-gray-400 text-center w-full">
© Copyright {{ currYear }}. All Rights Reserved
</p>
</div>
<div class="flex justify-center mt-5 md:mt-0">
2023-12-11 10:56:21 +00:00
<NuxtLink :to="{ name: user ? 'home' : 'index' }" class="flex-shrink-0 font-semibold flex items-center">
2023-12-09 14:47:03 +00:00
<img src="/img/logo.svg" alt="notion tools logo" class="w-10 h-10">
<span class="ml-2 text-xl text-black dark:text-white">
OpnForm
</span>
2023-12-11 10:56:21 +00:00
</NuxtLink>
2023-12-09 14:47:03 +00:00
</div>
<ul class="flex justify-center mt-5 md:mt-1">
<li class="mr-10">
2023-12-11 10:56:21 +00:00
<NuxtLink :to="{name:'privacy-policy'}" class="text-gray-600 dark:text-gray-400 transition-colors duration-300 hover:text-nt-blue">
2023-12-09 14:47:03 +00:00
Privacy Policy
2023-12-11 10:56:21 +00:00
</NuxtLink>
2023-12-09 14:47:03 +00:00
</li>
<li class="list-disc pl-3">
2023-12-11 10:56:21 +00:00
<NuxtLink :to="{name:'terms-conditions'}" class="text-gray-600 dark:text-gray-400 transition-colors duration-300 hover:text-nt-blue">
2023-12-09 14:47:03 +00:00
Terms & Conditions
2023-12-11 10:56:21 +00:00
</NuxtLink>
2023-12-09 14:47:03 +00:00
</li>
</ul>
</div>
</div>
</template>
<script>
import { computed } from 'vue'
import { useAuthStore } from '../../stores/auth'
export default {
setup () {
const authStore = useAuthStore()
return {
user : computed(() => authStore.user)
}
},
data: () => ({
currYear: new Date().getFullYear(),
}),
computed: {
helpUrl: () => this.$config.links.help_url,
githubUrl: () => this.$config.links.github_url,
forumUrl: () => this.$config.links.github_forum_url,
changelogUrl: () => this.$config.links.changelog_url,
facebookGroupUrl: () => this.$config.links.facebook_group,
twitterUrl: () => this.$config.links.twitter,
featureRequestsUrl: () => this.$config.links.feature_requests
},
mounted () {},
methods: {}
}
</script>