12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <owl-carousel-o [options]="customOptions">
- <ng-container>
- <ng-template carouselSlide *ngFor="let item of slidesStore">
- <section
- class="get-start"
- fxLayout="row wrap"
- fxLayoutAlign="space-between start"
- >
- <div
- class="get-start__description"
- fxFlex.lt-md="100"
- fxFlex.gt-sm="50"
- >
- <h1 [innerHTML]="item.title"></h1>
- <p>
- A comprehensive professional technology platform that follows the
- superior business model by offering multiple human capital
- management solutions in a single platform. <br />
- <span class="mt-2 d-block">
- The “MTWORK” platform is unique in that it is a reliable platform
- that achieves comprehensiveness for managing remote work, provides
- effective digital transformation, and directs the work style in
- line with the developments of the times. To include all parties
- under one platform with an integrated system that meets the needs
- of employers and employees.
- </span>
- </p>
- <button class="get-start__btn">Get Started</button>
- </div>
- <div
- fxFlex.lt-md="100"
- fxFlex.gt-sm="50"
- fxLayout="row"
- fxLayoutAlign="end center"
- fxHide.lt-md=""
- >
- <img src="assets/images/get-start.png" alt="" title="" />
- </div>
- </section>
- </ng-template>
- </ng-container>
- </owl-carousel-o>
|