diff --git a/Components/Layout/section.jsx b/Components/Layout/section.jsx index 92d8d73..90c4438 100644 --- a/Components/Layout/section.jsx +++ b/Components/Layout/section.jsx @@ -1,6 +1,6 @@ import React, { useEffect, useRef, useState } from "react"; import VideoButton from "/home/clyde/Code/shiloh/Components/Buttons/video-button.jsx"; -const Section = ({ videoUrl, text, buttonOneText, buttonTwoText }) => { +const Section = ({ videoUrl, text, videoID, buttonOneText, buttonTwoText }) => { const videoRef = useRef(null); const [isPlaying, setIsPlaying] = useState(false); @@ -45,7 +45,7 @@ const Section = ({ videoUrl, text, buttonOneText, buttonTwoText }) => {