Skip to content

Commit

Permalink
181: Set copyright year programmatically (#184)
Browse files Browse the repository at this point in the history
Set copyright year with JS Date object, on visit
  • Loading branch information
jamesaorson authored Apr 27, 2024
1 parent 333a7f1 commit ae579bd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/src/views/HomeView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
<div class="bg-richBlack h-10 py-5"></div>
<Instructors />
<div class="bg-richBlack h-10 py-5"></div>
<footer class="bg-slate-700 p-5 flex justify-center text-virgil">&copy;2023 Exokomodo</footer>
<footer class="bg-slate-700 p-5 flex justify-center text-virgil">&copy;{{ new Date().getFullYear() }} Exokomodo
</footer>

</template>

Expand Down

0 comments on commit ae579bd

Please sign in to comment.