Files
aranroig.com/frontend/app/components/Footer.vue
Aran Roig 6953b20b2c
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 37s
Big commit
2026-04-13 14:09:57 +02:00

22 lines
358 B
Vue

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