1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-11-20 20:40:49 -05:00

clean up <Video /> props

This commit is contained in:
2022-02-16 11:10:09 -05:00
parent 3bc3e1b5a1
commit 3edaa6b0e4
10 changed files with 52 additions and 29 deletions

View File

@@ -19,8 +19,10 @@ const Birthday = () => (
<Content>
<Video
webm="/static/images/birthday/birthday.webm"
mp4="/static/images/birthday/birthday.mp4"
src={{
webm: "/static/images/birthday/birthday.webm",
mp4: "/static/images/birthday/birthday.mp4",
}}
thumbnail={thumbnail.src}
/>
</Content>

View File

@@ -19,8 +19,10 @@ const Hillary = () => (
<PageTitle>My Brief Apperance in Hillary Clinton's DNC Video</PageTitle>
<Content>
<Video
webm="/static/images/hillary/convention-720p.webm"
mp4="/static/images/hillary/convention-720p.mp4"
src={{
webm: "/static/images/hillary/convention-720p.webm",
mp4: "/static/images/hillary/convention-720p.mp4",
}}
thumbnail={thumbnail.src}
subs="/static/images/hillary/subs.en.vtt"
/>

View File

@@ -20,8 +20,10 @@ const Leo = () => (
<Content>
<Video
webm="/static/images/leo/leo.webm"
mp4="/static/images/leo/leo.mp4"
src={{
webm: "/static/images/leo/leo.webm",
mp4: "/static/images/leo/leo.mp4",
}}
thumbnail={thumbnail.src}
subs="/static/images/leo/subs.en.vtt"
/>