mirror of
https://github.com/ArthurDanjou/artchat.git
synced 2026-01-14 18:59:54 +01:00
33 lines
721 B
Vue
33 lines
721 B
Vue
<script lang="ts" setup>
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<section class="prose dark:prose-invert">
|
|
<i18n-t keypath="tool.homelab">
|
|
<template #space>
|
|
<br>
|
|
</template>
|
|
<template #status>
|
|
<UButton
|
|
label="ArtStatus"
|
|
trailing-icon="i-simple-icons-uptimekuma"
|
|
variant="link"
|
|
to="https://status.arthurdanjou.fr"
|
|
target="_blank"
|
|
class="p-0"
|
|
/>
|
|
</template>
|
|
<template #article>
|
|
<UButton
|
|
label="ArtLab"
|
|
trailing-icon="i-ph-rocket-launch-duotone"
|
|
variant="link"
|
|
to="/projects/artlab"
|
|
class="p-0"
|
|
/>
|
|
</template>
|
|
</i18n-t>
|
|
</section>
|
|
</template>
|