Add banner

This commit is contained in:
alice 2024-10-28 17:02:43 +01:00
parent cbce3348f2
commit 27a2cdcaeb
5 changed files with 65 additions and 4 deletions

View file

@ -0,0 +1,16 @@
<!--.vitepress/theme/MyLayout.vue-->
<script setup>
import DefaultTheme from 'vitepress/theme'
const { Layout } = DefaultTheme
</script>
<template>
<Layout>
<template #layout-top>
<div class="banner">
Vide is 0.x software and may go through breaking changes through different versions
</div>
</template>
</Layout>
</template>