This commit is contained in:
User
2025-02-15 21:19:04 +03:00
parent 8a1f44692c
commit 73c80dcc16
9 changed files with 488 additions and 116 deletions

View File

@@ -0,0 +1,16 @@
"use client"
interface VideoPlayerProps {
videoUrl: string
}
export function VideoPlayer({ videoUrl }: VideoPlayerProps) {
return (
<div className="relative aspect-square rounded-lg overflow-hidden">
<video src={videoUrl} controls className="absolute inset-0 w-full h-full object-cover">
Your browser does not support the video tag.
</video>
</div>
)
}