bilibili-API-collect/.vuepress/theme/layouts/Layout.vue
2025-04-20 21:16:27 +08:00

19 lines
511 B
Vue

<template>
<ParentLayout>
<template #page-bottom>
<footer style="text-align: center">
Copyright © 2020-2025
<a href="https://github.com/SocialSisterYi/">SocialSisterYi</a> |
<a
href="https://github.com/SocialSisterYi/bilibili-API-collect/blob/master/LICENSE"
>CC-BY-NC-4.0 Licensed</a
>
</footer>
</template>
</ParentLayout>
</template>
<script setup>
import ParentLayout from '@vuepress/theme-default/layouts/Layout.vue';
</script>