elk/components/nav/NavFooter.vue

15 lines
548 B
Vue
Raw Normal View History

2022-11-15 17:14:10 +00:00
<script setup lang="ts">
// eslint-disable-next-line @typescript-eslint/prefer-ts-expect-error
// @ts-ignore build time
const buildTime = __BUILD_TIME__
const buildTimeAgo = useTimeAgo(buildTime)
</script>
<template>
2022-11-23 02:16:31 +00:00
<div p4 text-sm op25 flex="~ col">
<button i-ri-sun-line dark:i-ri-moon-line text-lg mb4 @click="toggleDark()" />
2022-11-23 13:06:27 +00:00
<div>A Mastodon client made with 💚</div>
<div>Built <span :title="buildTime">{{ buildTimeAgo }}</span> · <a href="https://github.com/antfu/elk" target="_blank">GitHub</a></div>
2022-11-15 17:14:10 +00:00
</div>
</template>