turkmen-expo/components/shared/Video.tsx

24 lines
620 B
TypeScript
Raw Normal View History

2025-10-12 17:42:17 +00:00
import clsx from "clsx";
export const Video = () => {
return (
<section className="relative">
<video
className={clsx(
"w-full opacity-100 lg:h-[565px] sm:h-[375px] h-[200px] object-cover mx-auto"
)}
id="vid"
autoPlay
typeof="video/mp4"
loop
muted
src="https://turkmenexpo.com/app/storage/app/media/video/video.mp4"
/>
<div
id="spinner"
className="hidden border-[8px] border-solid border-l-red h-[60px] w-[60px] rounded-full z-[100] absolute top-[100px] left-[100px] "
></div>
</section>
);
};