ngx-admin/docs/app/pages/home/main-info-section/main-info-section.component.html
2020-12-09 16:18:51 +03:00

62 lines
2.3 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div class="main-img-container">
<a href="http://www.akveo.com/ngx-admin/?utm_campaign=ngx_admin%20-%20demo%20-%20ngx_admin%20docs&utm_source=ngx_admin&utm_medium=referral&utm_content=landing_main_section_image"
target="_blank"
class="hero-image-link">
<img *ngIf="breakpoint.width >= breakpoints.md"
class="main-img"
defaultImage="assets/img/default.png"
[lazyLoad]="imageUrl"/>
</a>
</div>
<div class="main-inf">
<ng-container *ngIf="forMaterialTheme === false">
<ngx-default-admin-info></ngx-default-admin-info>
</ng-container>
<ng-container *ngIf="forMaterialTheme !== false">
<ngx-material-admin-info></ngx-material-admin-info>
</ng-container>
<div class="mobile-main-img-container">
<img *ngIf="breakpoint.width <= breakpoints.sm" class="main-img" lazyLoad="assets/img/corporate-theme.png" alt="Light theme Dashboard"/>
</div>
<div class="badges">
<iframe class="stars"
src="https://ghbtns.com/github-btn.html?user=akveo&repo=ngx-admin&type=star&count=true"
frameborder="0"
width="170px"
scrolling="0">
</iframe>
</div>
<div class="buttons">
<div class="buttons-links">
<a class="btn btn-demo"
href="https://www.akveo.com/ngx-admin/pages/dashboard?utm_campaign=ngx_admin%20-%20demo%20-%20ngx_admin%20docs&utm_source=ngx_admin&utm_medium=referral&utm_content=landing_main_section"
target="_blank">
Demo
</a>
<button (click)="openDownloadDialog()" class="btn btn-download">
Download
</button>
</div>
<a href="https://store.akveo.com/pages/ngx-admin-premium?utm_source=ngx_admin&utm_medium=referral&utm_campaign=ngx-admin_premium"
target="_blank"
class="btn btn-premium btn-green"
>
ngx-admin Premium
</a>
<div class="subscribe-to-updates">
<span class="description">
To have all the resources for quick updates & support, donate just $10 a month. Support developers. Its a win-win, check what youll get:
</span>
<a href="https://store.akveo.com/products/ngx-admin-updates-subscription-be-updated-in-several-steps"
target="_blank"
class="btn btn-premium btn-green"
>
Check Details
</a>
</div>
</div>
</div>