mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-12-18 03:27:02 -05:00
fix: update "For Parents" video ID
This commit is contained in:
parent
3c5cac59d2
commit
ef40808bde
1 changed files with 4 additions and 1 deletions
|
@ -10,6 +10,9 @@ const render = require('../../lib/render.jsx');
|
||||||
|
|
||||||
require('./parents.scss');
|
require('./parents.scss');
|
||||||
|
|
||||||
|
// YouTube video ID for the embedded "What is Scratch?" video
|
||||||
|
const videoId = 'LjOfOQkpPnU';
|
||||||
|
|
||||||
const Landing = () => {
|
const Landing = () => {
|
||||||
const isParentConfirmingChildEmail = React.useMemo(() => {
|
const isParentConfirmingChildEmail = React.useMemo(() => {
|
||||||
const query = window.location.search;
|
const query = window.location.search;
|
||||||
|
@ -48,7 +51,7 @@ const Landing = () => {
|
||||||
<iframe
|
<iframe
|
||||||
allowFullScreen
|
allowFullScreen
|
||||||
frameBorder="0"
|
frameBorder="0"
|
||||||
src="https://www.youtube.com/embed/jXUZaf5D12A"
|
src={`https://www.youtube.com/embed/${videoId}`}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</FlexRow>
|
</FlexRow>
|
||||||
|
|
Loading…
Reference in a new issue