21 lines
614 B
Vue
21 lines
614 B
Vue
<script setup lang="ts">
|
|
import * as log from "loglevel";
|
|
|
|
log.debug("AppFooter created");
|
|
</script>
|
|
|
|
<template>
|
|
<footer class="px-8 py-4 bg-gray-200 border-t flex flex-col lg:flex-row">
|
|
<div>@2022 VBV</div>
|
|
<div class="lg:ml-8">{{ $t("footer.faq") }}</div>
|
|
<div class="lg:ml-8">{{ $t("footer.dataProtection") }}</div>
|
|
<div class="lg:ml-8">{{ $t("footer.imprint") }}</div>
|
|
<div class="flex-grow"></div>
|
|
<div>VBV_VERSION_BUILD_NUMBER_VBV</div>
|
|
<div class="lg:ml-8">Deutsch</div>
|
|
<div class="lg:ml-8">{{ $t("footer.contact") }}</div>
|
|
</footer>
|
|
</template>
|
|
|
|
<style scoped></style>
|