Updated Footer

This commit is contained in:
chark1es 2024-03-16 20:19:48 -07:00
parent 9cbecb84dc
commit 2041c3e606

View file

@ -1,3 +1,17 @@
<div> <div class="mt-auto">
<div class="flex bg-ieee h-16 bottom-0"></div> <div
class="flex justify-center items-center rounded-t-[10%] bg-ieee h-32 bottom-0"
>
<footer class="text-center p-4 text-white font-bold">
<p id="year">
<span>&#169;</span>
<span id="currentYear"></span> IEEEUCSD. All rights reserved.
</p>
</footer>
</div>
</div> </div>
<script>
const currentYear = new Date().getFullYear();
document.getElementById("currentYear").textContent = currentYear;
</script>