'use client'

interface VideoPlayerProps {
  videoUrl: string
  title: string
}

export default function VideoPlayer({ videoUrl, title }: VideoPlayerProps) {
  return (
    <div className="w-full aspect-video bg-gray-900 rounded-lg overflow-hidden">
      <video
        controls
        className="w-full h-full"
        preload="metadata"
        poster=""
      >
        <source src={videoUrl} type="video/mp4" />
        Ваш браузер не підтримує відтворення відео.
      </video>
    </div>
  )
}

