Introduces MovieSearchComponent, ScheduleHeaderComponent, and MovieScheduleNoSearchResultComponent for improved movie search and schedule display. Updates schedule and navbar to support search functionality and UI enhancements. Adds movie fetching to HttpService and refines layout and styles for better user experience.
11 lines
473 B
HTML
11 lines
473 B
HTML
<div class="schedule-header px-4 py-4 duration-1000">
|
|
<div class="flex items-center">
|
|
<mat-icon style="font-size: 35px; width: 35px; height: 35px; opacity: 50%;">event</mat-icon>
|
|
<p class="text-2xl font-medium pl-2 bg-gradient-to-r from-indigo-500 to-pink-600 bg-clip-text text-transparent">
|
|
Programmübersicht
|
|
</p>
|
|
</div>
|
|
<app-movie-search (movieSearchResult)="movieSearchResult.emit($event)"></app-movie-search>
|
|
</div>
|
|
<mat-divider></mat-divider>
|