fix(landing): add contact section and fix landing image

This commit is contained in:
Alex 2020-03-24 16:06:05 +03:00 committed by Sergey Andrievskiy
parent 64b38da5ae
commit 00f0e4a2ba
24 changed files with 351 additions and 19 deletions

View file

@ -9,20 +9,6 @@
</a>
</div>
<div class="main-inf">
<!-- <h1>ngx-admin</h1>-->
<!-- <p class="description">-->
<!-- The most popular admin dashboard based on <strong>Angular 8+</strong>, Bootstrap 4+ and-->
<!-- <a href="https://hubs.ly/H0n5N9P0" target="_blank">Nebular</a> with-->
<!-- <a href="https://hubs.ly/H0n5PKH0">Eva Design System</a> support.-->
<!-- Free and Open Source for personal and commercial purposes.-->
<!-- <br>-->
<!-- <span class="bundles">-->
<!-- Never start from scratch again.-->
<!-- <a href="https://hubs.ly/H0n5NVz0" target="_blank">-->
<!-- Integrate ready-made solution: ngx-admin with backend.-->
<!-- </a>-->
<!-- </span>-->
<!-- </p>-->
<ng-container *ngIf="forMaterialTheme === false">
<ngx-default-admin-info></ngx-default-admin-info>
</ng-container>

View file

@ -4,8 +4,7 @@
* Licensed under the MIT License. See License.txt in the project root for license information.
*/
import { Component, OnDestroy, Input, OnInit } from '@angular/core';
import { coerceBooleanProperty } from '@angular/cdk/coercion';
import { Component, OnDestroy, Input } from '@angular/core';
import { NbMediaBreakpoint, NbMediaBreakpointsService, NbThemeService } from '@nebular/theme';
import { takeWhile } from 'rxjs/operators';
@ -34,7 +33,7 @@ export class MainInfoSectionComponent implements OnDestroy {
}
public get imageUrl(): string {
return this.forMaterialTheme
return this.forMaterialTheme !== false
? 'assets/img/ngx-admin-material.png'
: '/assets/img/ngx-admin.png';
}