Files
Control-Center/frontend/src/app/pages/hub/hub-page.component.ts
cubecraft-agents[bot] f490098af6 initial commit
2026-04-25 19:02:57 +00:00

26 lines
628 B
TypeScript

import { ChangeDetectionStrategy, Component } from '@angular/core';
@Component({
selector: 'app-hub-page',
standalone: true,
imports: [],
template: `
<div class="hub-page">
<p class="hub-page__placeholder">Command Hub — Fleet status grid will render here</p>
</div>
`,
styles: [`
.hub-page {
display: flex;
align-items: center;
justify-content: center;
min-height: 400px;
}
.hub-page__placeholder {
color: var(--cc-on-surface-variant);
font-size: 16px;
}
`],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class HubPageComponent {}