Add movie details and cast components: implement Page, HeroMovie, and MovieCast components to display detailed movie information, including cast, genres, and financial data. Integrate new BackButton and GenreLabel components for enhanced navigation and presentation.

This commit is contained in:
Norbert Maciaszek
2025-08-17 19:56:38 +02:00
parent b577a79278
commit 61395ca1ec
9 changed files with 635 additions and 23 deletions

View File

@@ -0,0 +1,13 @@
import { FC } from "react";
type Props = {
genre: string;
};
export const GenreLabel: FC<Props> = ({ genre }) => {
return (
<span className="px-3 py-1 bg-gradient-to-r from-purple-600/30 to-pink-600/30 rounded-full text-sm border border-purple-400/30">
{genre}
</span>
);
};