21 lines
637 B
Vue
21 lines
637 B
Vue
<script setup lang="ts">
|
|
import ThemeSwitcherComponent from '../common/ThemeSwitcherComponent.vue';
|
|
|
|
const emit = defineEmits([
|
|
"theme",
|
|
]);
|
|
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex flex-col gap-4 items-center text-center font-thin text-slate-600 dark:text-slate-400 ">
|
|
<ThemeSwitcherComponent @theme="(theme)=>emit('theme',theme)"></ThemeSwitcherComponent>
|
|
<div class="flex flex-col">
|
|
<a href="mailto:bugs@release11.com">Found a bug?</a>
|
|
<a href="#" class="hidden">Privacy Policy</a>
|
|
</div>
|
|
|
|
<span>Copyright 2023 <br/> Release11</span>
|
|
</div>
|
|
</template> |