feat: add footer
This commit is contained in:
1
app.vue
1
app.vue
@@ -23,4 +23,5 @@ useHead({
|
|||||||
<BeenWorkingWith />
|
<BeenWorkingWith />
|
||||||
<PersonalProjects />
|
<PersonalProjects />
|
||||||
<Connect />
|
<Connect />
|
||||||
|
<Footer />
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
11
components/footer.vue
Normal file
11
components/footer.vue
Normal 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>
|
||||||
Reference in New Issue
Block a user