File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
66import useBaseUrl from "@docusaurus/useBaseUrl" ;
77import styles from "./styles.module.css" ;
88import { Feature , FeatureList } from "../Feature" ;
9+ import ReactPlayer from "react-player" ;
910
1011function Home ( ) {
1112 const context = useDocusaurusContext ( ) ;
@@ -254,12 +255,30 @@ function Home() {
254255 Automatically keep party members up-to-date in your lobby
255256 screen using the < code > RedpointPartyMember</ code > actor.
256257 </ li >
258+ < li >
259+ Bind the friends list and party members to a UMG tree view
260+ widget; we'll keep entries up-to-date and you can focus on
261+ design.
262+ </ li >
257263 </ ul >
258264 </ Feature . Describer >
259265 < Feature . Visual >
260- < a href = "#" target = "_blank" >
261- < img src = "#" className = { classnames ( styles . featureImage ) } />
262- </ a >
266+ < div className = { classnames ( styles . featureImage ) } >
267+ < ReactPlayer
268+ playing
269+ loop
270+ muted
271+ url = { useBaseUrl ( "img/features/startup.mp4" ) }
272+ width = "100%"
273+ height = "auto"
274+ style = { {
275+ marginTop : "1em" ,
276+ marginBottom : "1em" ,
277+ // fixes weird extra bottom margin around videos
278+ display : "flex" ,
279+ } }
280+ />
281+ </ div >
263282 </ Feature . Visual >
264283 </ Feature >
265284 < Feature >
You can’t perform that action at this time.
0 commit comments