Enhance MovieCard component with new "aurora" layout: introduce a visually stunning design with gradient backgrounds, improved card interactions, and additional status indicators. Update MovieList to utilize the new layout for a more engaging user experience.

This commit is contained in:
Norbert Maciaszek
2025-08-16 15:55:03 +02:00
parent 3865de1c56
commit 1e7d7891d0
3 changed files with 198 additions and 5 deletions

View File

@@ -107,7 +107,7 @@ export const MovieList: FC<Props> = ({
ref={parent}
>
{sortedMovies.map((movie) => (
<MovieCard key={movie.id} layout="zeus" {...movie} />
<MovieCard key={movie.id} layout="aurora" {...movie} />
))}
</div>
)}