Add pages

This commit is contained in:
Çetin
2024-12-30 13:29:44 +03:00
parent f3d1148b3e
commit c7be0df88e
11 changed files with 992 additions and 5 deletions

14
src/views/pages/empty.ts Normal file
View File

@@ -0,0 +1,14 @@
import { Component } from '@angular/core';
@Component({
standalone: true,
template: `<div class="grid">
<div class="col-12">
<div class="card">
<h4>Empty Page</h4>
<p>This is your empty page template to start building beautiful applications.</p>
</div>
</div>
</div>`
})
export class Empty { }