import Image from "next/image"; import { cn } from "@/lib/utils"; import { Badge } from "../ui/badge"; import { RxClock } from "react-icons/rx"; import { AspectRatio } from "@/components/ui/aspect-ratio"; type VideoCardProps = { card: { picture: string; title: string; tags: string[]; }; className?: string; }; export default function VideoCard({ className, card }: VideoCardProps) { return (