Skip to content

Commit

Permalink
added demo video
Browse files Browse the repository at this point in the history
  • Loading branch information
Eeshau committed Nov 11, 2024
1 parent d47500c commit 36d50cc
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Binary file added packages/app/public/video.mp4
Binary file not shown.
2 changes: 1 addition & 1 deletion packages/app/src/components/Video.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const Video: React.FC = () => {
return (
<Box sx={{ width: '100%', height: '100%' }}>
<video style={{ width: '100%', height: '100%' }} controls>
<source src="path_to_your_video.mp4" type="video/mp4" />
<source src="/video.mp4" type="video/mp4" />
Your browser does not support the video tag.
</video>
</Box>
Expand Down
2 changes: 1 addition & 1 deletion packages/app/src/pages/AboutPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ const AboutPage: React.FC = () => {


{/* VIDEO */}
<Box sx={{ display: 'flex', justifyContent: 'center', width: '100%', marginX: 'auto', overflow: 'hidden' }}>
<Box sx={{ display: 'flex', justifyContent: 'center', width: '100%', marginX: 'auto', overflow: 'hidden', borderRadius:'12px' }}>
<Video />
</Box>

Expand Down

0 comments on commit 36d50cc

Please sign in to comment.