feat(status-dashboard): add version logging to console

Outputs version 1.1.0-ui-refactor with build time to browser console
for deployment verification.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Quinn Ftw 2025-12-25 15:48:46 -08:00
parent 48d1765be5
commit c56e97216c

View file

@ -8,6 +8,15 @@ import { AdminDashboard } from './AdminDashboard';
import { LoginPage } from './LoginPage';
import { HostsPage } from './HostsPage';
const APP_VERSION = '1.1.0-ui-refactor';
const BUILD_TIME = '2025-12-25T15:30:00Z';
console.log(
`%c Lilith Status Dashboard v${APP_VERSION} %c Built: ${BUILD_TIME} `,
'background: #ff00ff; color: #000; font-weight: bold; padding: 4px 8px;',
'background: #00ffff; color: #000; padding: 4px 8px;'
);
export function App() {
return (
<ThemeProvider defaultTheme="cyberpunk" storageKey="status-page-theme">