feat: add footer

This commit is contained in:
Marios Antonoudiou
2023-12-07 09:31:34 +02:00
parent f666c7e782
commit be2a1a0602
2 changed files with 12 additions and 0 deletions

View File

@@ -23,4 +23,5 @@ useHead({
<BeenWorkingWith />
<PersonalProjects />
<Connect />
<Footer />
</template>

11
components/footer.vue Normal file
View File

@@ -0,0 +1,11 @@
<script setup lang="ts">
const currentYear = new Date().getFullYear();
</script>
<template>
<UContainer class="flex flex-col gap-5">
<div class="text-sm text-gray-400">
© Marios Antonoudiou {{ currentYear }} - 🏛 Athens, Greece
</div>
</UContainer>
</template>