'use client'; import Link from 'next/link'; import { Play, MessageSquare, Clock, MoreVertical } from 'lucide-react'; import { Button } from '@/components/ui/button'; import { Card, CardContent } from '@/components/ui/card'; import { Badge } from '@/components/ui/badge'; import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuTrigger, } from '@/components/ui/dropdown-menu'; interface VideoCardProps { video: { id: string; title: string; thumbnailUrl: string; currentVersion: number; commentCount: number; duration: string; lastUpdated: string; }; projectId: string; } export function VideoCard({ video, projectId }: VideoCardProps) { return ( {/* Thumbnail */}
{video.title}
{video.duration}

{video.title}

v{video.currentVersion} {video.commentCount} {video.lastUpdated}
Edit Add Version Delete
); }