Skip to content
This repository has been archived by the owner on Dec 6, 2024. It is now read-only.

Commit

Permalink
Merge pull request #84 from starknetbrother/fix_video
Browse files Browse the repository at this point in the history
Chore: Fix  Playback video on homepage
  • Loading branch information
zintarh authored Nov 29, 2024
2 parents a27c2a9 + 09f0b1f commit d015e55
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions frontend/src/components/ContentSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,13 @@ const ContentCTAMobile = () => (

const VideoComponent = () => (
<div className="w-[22rem] h-[31rem] lg:h-[36.5rem] rounded-2xl">
<video controls className="w-full h-full object-cover rounded-2xl">
<source src="" type="" />
</video>
<iframe
className="w-full h-full rounded-2xl"
src="https://www.youtube.com/embed/j99jT-Ljusg"
title="YouTube video player"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowFullScreen
></iframe>
</div>
);

Expand Down

0 comments on commit d015e55

Please sign in to comment.