import { ChangeDetectionStrategy, Component } from '@angular/core'; import { NzCarouselModule } from 'ng-zorro-antd/carousel'; @Component({ selector: 'meu-home', standalone: true, imports: [NzCarouselModule], templateUrl: './home.component.html', styleUrl: './home.component.scss', changeDetection: ChangeDetectionStrategy.OnPush, }) export class HomeComponent {}