feat: recent lists
Docker Build / build (push) Has been cancelled
TS Lint / ESLint (push) Has been cancelled
TS Lint / Oxlint (push) Has been cancelled
TS Lint / TypeScript (push) Has been cancelled

This commit is contained in:
2026-07-15 16:34:37 +02:00
parent 5e60b5ad20
commit ea9a50a2f7
9 changed files with 85 additions and 31 deletions
+15
View File
@@ -0,0 +1,15 @@
<script setup lang="ts">
import { ArrowBigRightDashIcon } from "@lucide/vue";
defineProps<{list: string}>();
</script>
<template>
<router-link
:to="`/${list}`"
class="w-full flex gap-2 mb-2"
>
<arrow-big-right-dash-icon :size="16" class="inline" />
<span class="underline">{{ list }}</span>
</router-link>
</template>