All checks were successful
Test Asgard Runner / test (push) Successful in 3s
Final re-skin batch: admin ops (Console/FileManager[VueFinder preserved]/WipeCalendar/WipeHistory/Changelog/Migration), platform-admin (Dashboard/Licenses/Servers/Subscriptions/Users), public product pages (ServerInfo/StatusPage/StoreView) + PublicLayout, WarpEditor, ErrorBoundary. All logic/store/router/WebSocket/handlers preserved. Marketing views (Landing/Pricing/FAQ/HowItWorks/Roadmap/EarlyAccess + MarketingLayout) intentionally deferred to the dedicated marketing-site redesign. Build green. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
34 lines
650 B
Vue
34 lines
650 B
Vue
<script setup lang="ts">
|
|
import { RouterView } from 'vue-router'
|
|
import Logo from '@/components/ds/brand/Logo.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<div class="pub-shell">
|
|
<RouterView />
|
|
|
|
<footer class="pub-footer">
|
|
<Logo :size="18" :wordmark="true" />
|
|
</footer>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.pub-shell {
|
|
min-height: 100vh;
|
|
background: var(--surface-canvas);
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.pub-footer {
|
|
margin-top: auto;
|
|
padding: var(--space-6) var(--space-6);
|
|
border-top: 1px solid var(--border-subtle);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: var(--accent);
|
|
}
|
|
</style>
|