Add schedule component without logic

Zwischenstand
This commit is contained in:
2025-10-28 15:18:11 +01:00
parent 3319eb6361
commit 0cd7c9156f
19 changed files with 100 additions and 10 deletions

View File

@@ -0,0 +1,3 @@
<div class="w-64 mx-auto my-3">
<img src="assets/test-movie-poster.jpg" alt="Movie Poster" class="w-full h-auto shadow-md">
</div>

View File

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