Added 404 page

This commit is contained in:
2022-09-24 13:56:53 -04:00
parent ff8974d285
commit 0e76d7c1b1
4 changed files with 26 additions and 1 deletions

View File

@ -0,0 +1,14 @@
<section class="p-5 invert">
<div class="d-flex justify-content-center">
<div>
<img src="/assets/img/column.png" alt="" height="300px" width="auto">
</div>
<div class="d-flex flex-column align-items-center justify-content-center px-5">
<h2>404</h2>
<h3>Page Not Found</h3>
</div>
<div>
<img src="/assets/img/column.png" alt="" height="300px" width="auto">
</div>
</div>
</section>

View File

@ -0,0 +1,7 @@
import {Component} from '@angular/core';
@Component({
selector: 'xxx-404',
templateUrl: './404.component.html'
})
export class FourOFourComponent { }