Update year

This commit is contained in:
Sam Carlton 2021-01-27 12:45:32 -06:00 committed by GitHub
parent e84d433978
commit eb9c9d9753
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -25,7 +25,7 @@
</div>
</div>
<p class="mt-8 text-center text-base leading-6 text-gray-400">
&copy; 2020 Does it ARM All rights reserved.
&copy; {{ currentYear }} Does it ARM All rights reserved.
</p>
</div>
</footer>
@ -49,6 +49,11 @@ export default {
components: {
Navbar,
AllUpdatesSubscribe
},
computed: {
currentYear () {
return new Date().getFullYear()
}
}
}