Add movie search and schedule header components
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.
This commit is contained in:
@@ -6,7 +6,7 @@ nav {
|
||||
}
|
||||
|
||||
.navbar {
|
||||
width: 200px;
|
||||
width: 250px;
|
||||
background-color: white;
|
||||
padding: 5px;
|
||||
transition: color .2s;
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
<a [routerLink]="[item.path]"
|
||||
routerLinkActive="active"
|
||||
[routerLinkActiveOptions]="{ exact: true }"
|
||||
class="text-xl font-bold flex justify-center hover:bg-gray-200 gradient-text rounded-sm">
|
||||
class="text-2xl pl-3 hover:bg-gray-200 gradient-text rounded-sm">
|
||||
{{ item.label }}
|
||||
</a>
|
||||
</div>
|
||||
|
||||
@@ -12,7 +12,7 @@ export class NavbarComponent {
|
||||
*/
|
||||
|
||||
navItems:{label:string, path:string}[] = [
|
||||
{label: 'Schedule', path: '/schedule'},
|
||||
{label: 'Programm', path: '/schedule'},
|
||||
{label: 'Kinosaal-test', path: '/theater-overlay'},
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user