Skip to content
This repository was archived by the owner on Apr 8, 2024. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions website/pages/en/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,12 +102,36 @@ const Features = () => (
</Block>
);

const VideoContainer = () => {
return (
<div className="container text--center margin-bottom--xl">
<div className="row">
<div className="col" style={{textAlign: 'center'}}>
<h2>Check it out in the intro video</h2>
<div>
<iframe
width="560"
height="315"
src="https://www.youtube.com/embed/kEHZJ4CvyeI"
title="Explain Like I'm 5: Spectrum"
frameBorder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowFullScreen
/>
</div>
</div>
</div>
</div>
);
}

class Index extends React.Component {
render() {
const language = this.props.language || '';
return (
<div>
<HomeSplash language={language} />
<VideoContainer />
<div className="mainContainer">
<Features />
</div>
Expand Down