splash-screen.component.ts 597 Bytes
import { Component, OnInit } from '@angular/core';

@Component({
  selector: 'app-splash-screen',
  templateUrl: './splash-screen.component.html',
  styleUrls: ['./splash-screen.component.scss']
})
export class SplashScreenComponent implements OnInit {
  timerSplashScreen = 2000;
  showSplashScreen = true;
  textWelcome = 'BIENVENIDO A SPOT!';
  textComoEstas = '¿cómo estás?';
  textInvitamos = 'TE INVITAMOS A HACER';
  textTuPedido = 'tú pedido acá';

  constructor() { }

  ngOnInit() {
    setTimeout(() => {
      this.showSplashScreen = false;
    }, this.timerSplashScreen);
  }

}