Schedule component (still no logic)

Introduces new components for movie rating, duration, category, and empty schedule states. Updates the schedule view to use Angular Material tabs for date selection, dynamically showing movie info or an empty state. Also refines layout and styling for movie details and poster display.
This commit is contained in:
2025-10-29 01:01:19 +01:00
parent 0cd7c9156f
commit efc5e505e9
21 changed files with 141 additions and 24 deletions

View File

@@ -0,0 +1,5 @@
<div class="flex flex-col items-center justify-center py-12 text-gray-500 h-100 m-auto">
<mat-icon class="text-6xl mb-4 opacity-50" style="font-size: 50px; width: 50px; height: 50px;">event_busy</mat-icon>
<p class="text-lg">Keine Vorstellungen verfügbar</p>
<p class="text-sm">An diesem Tag finden keine Filmvorführungen statt.</p>
</div>

View File

@@ -0,0 +1,11 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-movie-schedule-empty',
standalone: false,
templateUrl: './movie-schedule-empty.component.html',
styleUrl: './movie-schedule-empty.component.css'
})
export class MovieScheduleEmptyComponent {
}