feat(notfound): add NotFound page (#1672)

This commit is contained in:
Gabriel 2018-05-07 05:07:14 -04:00 committed by Dmitry Nehaychik
parent 0ba99f2c6b
commit fa3cdf731b
9 changed files with 120 additions and 0 deletions

View file

@ -0,0 +1,15 @@
<div class="row">
<div class="col-md-12">
<nb-card>
<nb-card-body>
<div class="flex-centered col-xl-4 col-lg-6 col-md-8 col-sm-12">
<h2 class="title">404 Page Not Found</h2>
<small class="sub-title">The page you were looking for doesn't exist</small>
<button (click)="goToHome()" type="button" class="btn btn-block btn-hero-primary">
Take me home
</button>
</div>
</nb-card-body>
</nb-card>
</div>
</div>