feat: add licensed streaming platforms

This commit is contained in:
Kentai Radiquum 2025-03-16 02:02:42 +05:00
parent b5c8bcfa6e
commit 879bd6ba3f
Signed by: Radiquum
GPG key ID: 858E8EE696525EED
4 changed files with 50 additions and 0 deletions

View file

@ -1,8 +1,10 @@
import { Card, Button } from "flowbite-react";
import { useState } from "react";
import Image from "next/image";
import { ReleaseInfoStreaming } from "./ReleaseInfo.LicensedPlatforms";
export const ReleaseInfoBasics = (props: {
release_id: number;
image: string;
title: { ru: string; original: string };
note: string | null;
@ -52,6 +54,7 @@ export const ReleaseInfoBasics = (props: {
>
{isFullDescription ? "Скрыть" : "Показать полностью"}
</Button>
<ReleaseInfoStreaming release_id={props.release_id} />
</div>
</div>
</Card>