Files
corrosion-admin-panel/frontend/src/components/layout/PublicLayout.vue
Vantz Stockwell 29615cb4f3
All checks were successful
Test Asgard Runner / test (push) Successful in 3s
feat(redesign): re-skin admin-ops/platform-admin/public views to DS (Phase D batch 4 — panel re-skin complete)
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>
2026-06-11 02:55:02 -04:00

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>