Updated website

This commit is contained in:
2023-12-15 15:48:37 -05:00
parent 00b0b88eed
commit 33540f3061
82 changed files with 13946 additions and 14134 deletions

View File

@ -0,0 +1,7 @@
<div class="bg-white p-5">
<div class="card my-5 mx-auto p-5 text-center" style="max-width: 400px">
<h1 style="font-size: 4em">404</h1>
<h2 class="mt-3">Page not found</h2>
<button class="btn btn-outline-secondary rounded-pill px-4 mt-3" (click)="back()">Back</button>
</div>
</div>

View File

@ -0,0 +1,13 @@
import {Component} from '@angular/core';
declare var navigation: any;
@Component({
selector: 'app-not-found',
templateUrl: './not-found.component.html'
})
export class NotFoundComponent {
back() {
navigation.back();
}
}