2024-11-19 08:28:09 +01:00
|
|
|
<div class="container p-4 mx-auto max-w-4xl">
|
2025-01-28 08:27:37 +01:00
|
|
|
<h1>{{ "hello" | uppercase | text }}</h1>
|
2025-01-07 09:59:47 +01:00
|
|
|
<a class="submit-button" routerLink="/new">CREATE NEW HOTEL</a>
|
2024-11-19 08:28:09 +01:00
|
|
|
<app-search [(input)]="search"></app-search>
|
|
|
|
@if (hotels[0].hotelName) {
|
|
|
|
<div *ngFor="let hotel of hotels">
|
2025-01-28 08:27:37 +01:00
|
|
|
<app-hotel-item
|
|
|
|
*ngIf="hotel.hotelName.toLowerCase().includes(search.toLowerCase())"
|
|
|
|
[hotel]="hotel"
|
|
|
|
></app-hotel-item>
|
2024-11-19 08:28:09 +01:00
|
|
|
</div>
|
|
|
|
}
|
2024-11-12 09:18:15 +01:00
|
|
|
</div>
|