New VitePress and design look + little work on update to work with.

This commit is contained in:
Starystars67
2026-06-16 12:31:19 +01:00
parent 0ed2597186
commit 97a7aaf643
141 changed files with 4356 additions and 539 deletions
+15
View File
@@ -0,0 +1,15 @@
---
layout: false
---
<script setup>
import { onMounted } from 'vue'
import { useRouter } from 'vitepress'
const router = useRouter()
onMounted(() => {
// Redirects incoming root traffic to the /en/ folder
router.go('/en/')
})
</script>