Files
hapi/docs/index.md
weishu 1e46bd3295 fix: update documentation routing and simplify navigation
- Replace VitePress router with window.location for docs index redirect
- Add redirect rules for /docs and /docs/ paths to quick-start guide
- Simplify navigation by removing section anchor links
- Update all CTA buttons to link directly to /docs/ instead of home sections
- Consolidate navigation layout on both desktop and mobile views
2026-01-01 14:23:44 +08:00

14 lines
222 B
Markdown

---
layout: home
title: HAPI Documentation
---
<script setup>
import { onMounted } from 'vue'
import { withBase } from 'vitepress'
onMounted(() => {
window.location.replace(withBase('/guide/quick-start'))
})
</script>