mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
0caf7339ef
Co-authored-by: 三咲智子 Kevin Deng <sxzz@sxzz.moe>
33 lines
1.1 KiB
Vue
33 lines
1.1 KiB
Vue
<script setup lang="ts">
|
|
const { t } = useI18n()
|
|
const buildTime = import.meta.env.__BUILD_TIME__ as string
|
|
const buildTimeAgo = useTimeAgo(buildTime)
|
|
</script>
|
|
|
|
<template>
|
|
<footer p4 text-sm text-secondary-light flex="~ col">
|
|
<div flex="~ gap2" items-center mb4>
|
|
<CommonTooltip :content="t('nav_footer.toggle_theme')">
|
|
<button flex i-ri-sun-line dark:i-ri-moon-line text-lg @click="toggleDark()" />
|
|
</CommonTooltip>
|
|
<CommonTooltip :content="t('nav_footer.zen_mode')">
|
|
<button
|
|
flex
|
|
text-lg
|
|
:class="isZenMode ? 'i-ri:layout-right-2-line' : 'i-ri:layout-right-line'"
|
|
@click="toggleZenMode()"
|
|
/>
|
|
</CommonTooltip>
|
|
<NavSelectLanguage />
|
|
<NavSelectFeatureFlags v-if="currentUser" />
|
|
</div>
|
|
<div>
|
|
<button cursor-pointer hover:underline @click="openPreviewHelp">
|
|
Show intro
|
|
</button>
|
|
</div>
|
|
<div>A Mastodon client made with 🧡</div>
|
|
<div>Built <time :datetime="buildTime" :title="buildTime">{{ buildTimeAgo }}</time> · <a href="https://github.com/elk-zone/elk" target="_blank">GitHub</a></div>
|
|
</footer>
|
|
</template>
|