2026-04-25 19:02:57 +00:00
|
|
|
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>
|
|
|
|
|
`,
|
2026-04-27 12:40:29 +00:00
|
|
|
styleUrl: './hub-page.component.scss',
|
2026-04-25 19:02:57 +00:00
|
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
|
|
|
})
|
|
|
|
|
export class HubPageComponent {}
|