Skip to content

Commit

Permalink
fix: update year footer
Browse files Browse the repository at this point in the history
  • Loading branch information
pablosirera committed May 22, 2021
1 parent 5259719 commit a98063e
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions components/ui/TheFooter.vue
Original file line number Diff line number Diff line change
@@ -1,19 +1,12 @@
<template>
<footer class="container text-center py-16 px-3">
Hecho con mucho 💚 por
<TheLink url="https://twitter.com/pablosirera">Pablo Sirera</TheLink> ©
{{ year }}
<TheLink url="https://twitter.com/pablosirera">Pablo Sirera</TheLink> © 2020
</footer>
</template>

<script>
export default {
name: 'TheFooter',
computed: {
year() {
const date = new Date()
return date.getFullYear()
},
},
}
</script>

0 comments on commit a98063e

Please sign in to comment.