All checks were successful
Build and Deploy Nuxt / build (push) Successful in 28s
19 lines
296 B
Vue
19 lines
296 B
Vue
<template>
|
|
<div class="footer">
|
|
<span>(C) 2026 Aran Roig. All rights whatever.</span>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.footer {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-top: 60px;
|
|
}
|
|
|
|
span {
|
|
opacity: 0.4;
|
|
text-align: center;
|
|
}
|
|
</style> |