opnform-host-nginx/client/components/pages/OpenFormFooter.vue

82 lines
2.4 KiB
Vue
Raw Normal View History

2023-12-09 15:47:03 +01:00
<template>
<div class="w-full">
<div class="grid md:grid-cols-3 my-8">
<div class="flex mt-2 items-center">
2023-12-09 15:47:03 +01:00
<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">
<router-link
:to="{ name: user ? 'home' : 'index' }"
class="flex-shrink-0 font-semibold flex items-center"
>
<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>
</router-link>
</div>
<div class="flex justify-center mt-5 md:mt-0">
<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"
>
2024-02-03 17:41:52 +01:00
Privacy Policy
</router-link>
<router-link
:to="{ name: 'terms-conditions' }"
class="text-gray-600 dark:text-gray-400 transition-colors duration-300 hover:text-nt-blue"
>
2024-02-03 17:41:52 +01:00
Terms & Conditions
</router-link>
<a
:href="opnformConfig.links.feature_requests"
target="_blank"
class="text-gray-600 dark:text-gray-400 transition-colors duration-300 hover:text-nt-blue"
>
Feature Requests
</a>
<a
:href="opnformConfig.links.roadmap"
target="_blank"
class="text-gray-600 dark:text-gray-400 transition-colors duration-300 hover:text-nt-blue"
>
Roadmap
</a>
<a
:href="opnformConfig.links.discord"
target="_blank"
class="text-gray-600 dark:text-gray-400 transition-colors duration-300 hover:text-nt-blue"
>
2024-02-03 17:41:52 +01:00
Discord
</a>
</div>
2023-12-09 15:47:03 +01:00
</div>
</div>
</div>
</template>
<script>
import { computed } from "vue"
import opnformConfig from "~/opnform.config.js"
2023-12-09 15:47:03 +01:00
export default {
setup() {
2023-12-09 15:47:03 +01:00
const authStore = useAuthStore()
return {
user: computed(() => authStore.user),
opnformConfig,
2023-12-09 15:47:03 +01:00
}
},
data: () => ({
currYear: new Date().getFullYear(),
}),
}
</script>