refactor(frontend): move views into app and pages structure

Reorganize the frontend around app-level routing and page modules so the runtime and feature screens share a clearer navigation and composition layout for future work.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-21 22:13:12 +08:00
parent a27736a832
commit b024a2bcb5
25 changed files with 2628 additions and 1656 deletions

View File

@@ -0,0 +1,29 @@
<script setup lang="ts">
import { RouterView } from 'vue-router'
import SidebarNav from '@/components/SidebarNav.vue'
</script>
<template>
<div class="layout scanlines">
<SidebarNav />
<main class="main-content grid-bg">
<RouterView />
</main>
</div>
</template>
<style scoped>
.layout {
display: flex;
height: 100vh;
width: 100vw;
background: var(--bg-void);
overflow: hidden;
}
.main-content {
flex: 1;
overflow: hidden;
position: relative;
}
</style>