scaffold: Vue 3 frontend — router, stores, views, composables, layouts

Complete frontend skeleton: Vite + Vue 3 + TypeScript + Tailwind CSS,
Pinia stores (auth, server, wipe, plugins), authenticated API composable,
full route tree with auth guards, DashboardLayout with sidebar nav,
23 view stubs across auth/admin/public, all TypeScript interfaces.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Vantz Stockwell
2026-02-14 21:42:21 -05:00
parent 175d6f0a7b
commit e2f2f64d33
46 changed files with 3335 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
<script setup lang="ts">
// TODO: Implement public-facing server information page
</script>
<template>
<div class="p-6">
<h1 class="text-2xl font-bold text-neutral-100 mb-4">Server Info</h1>
<p class="text-neutral-400">Public server information rules, description, and connection details.</p>
</div>
</template>

View File

@@ -0,0 +1,10 @@
<script setup lang="ts">
// TODO: Implement public server status page with uptime and metrics
</script>
<template>
<div class="p-6">
<h1 class="text-2xl font-bold text-neutral-100 mb-4">Server Status</h1>
<p class="text-neutral-400">Live server status, uptime history, and current player count.</p>
</div>
</template>

View File

@@ -0,0 +1,10 @@
<script setup lang="ts">
// TODO: Implement public-facing webstore for player purchases
</script>
<template>
<div class="p-6">
<h1 class="text-2xl font-bold text-neutral-100 mb-4">Store</h1>
<p class="text-neutral-400">Browse and purchase items from the server store.</p>
</div>
</template>