Files
aranroig.com/frontend/app/components/Footer.vue
BinarySandia04 c105669065
All checks were successful
Build and Deploy Nuxt / build (push) Successful in 35s
Big update
2026-03-20 23:10:38 +01:00

19 lines
274 B
Vue

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