ADD MyClips page and VideoCard component

This commit is contained in:
2025-07-09 18:39:40 +02:00
parent c512f055ee
commit 130938c56a
5 changed files with 75 additions and 14 deletions

View File

@@ -0,0 +1,36 @@
import clsx from "clsx";
import { formatTime } from "../../utils/utils.ts";
import {Link} from "react-router-dom";
type VideoCardProps = {
title: string,
length: number,
thumbnailUrl: string,
videoUrl: string,
className?: string
}
const VideoCard = ({
title,
length,
thumbnailUrl,
videoUrl,
className}: VideoCardProps) => {
return (
<Link
to={videoUrl}
>
<div className={clsx("flex flex-col", className)}>
<img src={thumbnailUrl} alt="Video Thumbnail" />
<div className={"flex flex-row justify-between items-center p-2"}>
<p>{title}</p>
<p>{formatTime(length)}</p>
</div>
</div>
</Link>
);
}
export default VideoCard;