chore: switch from vuepress to vitepress
deploy / deploy (push) Failing after 4m41s

This commit is contained in:
2026-07-11 11:41:14 +02:00
parent 3aa57fcdda
commit 8e39924ee7
98 changed files with 523 additions and 2910 deletions
+21
View File
@@ -0,0 +1,21 @@
<template>
<figure>
<img :alt="alt" :src="src" />
<figcaption><slot></slot></figcaption>
</figure>
</template>
<script setup lang="ts">
const props = defineProps<{
src: string;
alt?: string;
}>();
</script>
<style>
figcaption {
text-align: center;
margin-top: 1rem;
margin-bottom: 1rem;
}
</style>