X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=webapp%2Fsrc%2Fapp%2Fhome%2Fhome.component.ts;fp=webapp%2Fsrc%2Fapp%2Fhome%2Fhome.component.ts;h=0000000000000000000000000000000000000000;hb=38c0c21a969e621c725245ce91c78e77076c5ce7;hp=66a2f307c10281033d122efe4f8fcce898117b58;hpb=b0d130807fb9bf36f5ac1abe21cbd558eb86d5cc;p=src%2Fxds%2Fxds-agent.git diff --git a/webapp/src/app/home/home.component.ts b/webapp/src/app/home/home.component.ts deleted file mode 100644 index 66a2f30..0000000 --- a/webapp/src/app/home/home.component.ts +++ /dev/null @@ -1,46 +0,0 @@ -import { Component, OnInit } from '@angular/core'; - -export interface ISlide { - img?: string; - imgAlt?: string; - hText?: string; - hHtml?: string; - text?: string; - html?: string; - btn?: string; - btnHref?: string; -} - -@Component({ - selector: 'xds-home', - templateUrl: 'home.component.html', - styleUrls: ['home.component.css'] -}) - -export class HomeComponent { - - public carInterval = 4000; - public activeSlideIndex = 0; - - // FIXME SEB - Add more slides and info - public slides: ISlide[] = [ - { - img: 'assets/images/iot-graphx.jpg', - imgAlt: 'iot graphx image', - hText: 'Welcome to XDS Dashboard !', - text: 'X(cross) Development System allows developers to easily cross-compile applications.', - }, - { - img: 'assets/images/iot-graphx.jpg', - imgAlt: 'iot graphx image', - hText: 'Create, Build, Deploy, Enjoy !', - }, - { - img: 'assets/images/iot-graphx.jpg', - imgAlt: 'iot graphx image', - hHtml: '

To Start: click on icon and add new folder

', - } - ]; - - constructor() { } -}