-
-
Notifications
You must be signed in to change notification settings - Fork 339
Expand file tree
/
Copy pathFooter.vue
More file actions
27 lines (25 loc) · 642 Bytes
/
Footer.vue
File metadata and controls
27 lines (25 loc) · 642 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<script setup lang="ts">
const buildTime = __BUILD_TIME__
const timeAgo = useTimeAgo(new Date(buildTime))
</script>
<template>
<footer class="text-center text-sm pt-8 pb-6">
<p class="color-fade">
built by
<a
class="opacity-75 hover:opacity-100"
href="https://github.com/antfu"
target="_blank"
>@antfu</a>,
powered by
<a
class="opacity-75 hover:opacity-100"
href="https://iconify.design"
target="_blank"
>Iconify</a>
</p>
<div color-fade mt-1 op50 italic>
Last update: {{ buildTime }} ({{ timeAgo }})
</div>
</footer>
</template>