diff --git a/app/components/ReleaseInfo/ReleaseInfo.Basics.tsx b/app/components/ReleaseInfo/ReleaseInfo.Basics.tsx index c23cf4f..1bf9448 100644 --- a/app/components/ReleaseInfo/ReleaseInfo.Basics.tsx +++ b/app/components/ReleaseInfo/ReleaseInfo.Basics.tsx @@ -2,6 +2,7 @@ import { Card, Button } from "flowbite-react"; import { useState } from "react"; import Image from "next/image"; import { ReleaseInfoStreaming } from "./ReleaseInfo.LicensedPlatforms"; +import { Poster } from "../ReleasePoster/Poster"; export const ReleaseInfoBasics = (props: { release_id: number; @@ -14,14 +15,11 @@ export const ReleaseInfoBasics = (props: { return ( -
- +
+
+ + +

diff --git a/app/components/ReleaseLink/ReleaseLink.tsx b/app/components/ReleaseLink/ReleaseLink.tsx index f81e277..3e8f0b9 100644 --- a/app/components/ReleaseLink/ReleaseLink.tsx +++ b/app/components/ReleaseLink/ReleaseLink.tsx @@ -2,18 +2,21 @@ import { ReleaseLink169 } from "./ReleaseLink.16_9FullImage"; import { ReleaseLink169Poster } from "./ReleaseLink.16_9Poster"; import { ReleaseLinkPoster } from "./ReleaseLink.Poster"; -export const ReleaseLink = (props: {type?: "16_9"|"poster"}) => { +export const ReleaseLink = (props: { type?: "16_9" | "poster" }) => { const type = props.type || "16_9"; if (type == "16_9") { return ( <> -

-
+
TYPE=16/9
+ + {/*
*/} + {/*
*/} - ) + ); } if (type == "poster") { - return ; + return
TYPE=POSTER
; + // return ; } }; diff --git a/app/components/ReleasePoster/Poster.tsx b/app/components/ReleasePoster/Poster.tsx new file mode 100644 index 0000000..a7a4a56 --- /dev/null +++ b/app/components/ReleasePoster/Poster.tsx @@ -0,0 +1,22 @@ +import Image from "next/image"; + +export const Poster = (props: { + image: string; + alt?: string; + // title: { ru: string; original: string }; + // note: string | null; + // description: string; + type?: "image_only"; + className?: string; +}) => { + return ( + {props.alt + ); +};