import { ChangeDetectionStrategy, Component } from '@angular/core'; @Component({ selector: 'app-hub-page', standalone: true, imports: [], template: `

Command Hub — Fleet status grid will render here

`, styleUrl: './hub-page.component.scss', changeDetection: ChangeDetectionStrategy.OnPush, }) export class HubPageComponent {}