feat: add GitHub stars button to docs navbar and fix footer license

Add a star button with live count from the GitHub API in the top-right
of the docs site. Fix footer from "MIT License" to "AGPLv3 License".
This commit is contained in:
Siddharth Kumar Sah
2026-04-03 23:14:37 +08:00
parent 05fc844410
commit 47adfde5cb
5 changed files with 133 additions and 1 deletions
+14
View File
@@ -0,0 +1,14 @@
<script setup>
import DefaultTheme from "vitepress/theme";
import GitHubStars from "./GitHubStars.vue";
const { Layout } = DefaultTheme;
</script>
<template>
<Layout>
<template #nav-bar-content-after>
<GitHubStars />
</template>
</Layout>
</template>