12 lines
298 B
Vue
12 lines
298 B
Vue
<script setup lang="ts">
|
||
const currentYear = new Date().getFullYear();
|
||
</script>
|
||
|
||
<template>
|
||
<UContainer class="flex flex-col gap-5" as="footer">
|
||
<div class="text-sm text-gray-400">
|
||
© Marios Antonoudiou {{ currentYear }} - 🏛️ Athens, Greece
|
||
</div>
|
||
</UContainer>
|
||
</template>
|