Files
aranroig.com/frontend/app/components/Footer.vue
BinarySandia04 bbc34c1b12
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 35s
A lot of AI slop
2026-06-08 19:36:45 +02:00

27 lines
410 B
Vue

<script setup lang="ts">
</script>
<template>
<div class="tui-statusbar">
<span>{{ $t('prefooter') }}</span>
<br>
<span>{{ $t('footer') }}</span>
</div>
</template>
<style scoped>
.tui-statusbar {
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
margin-top: 60px;
}
span {
opacity: 0.4;
text-align: center;
}
</style>