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 }) => {

{text}

- + diff --git a/pages/index.js b/pages/index.js index 6a63b2b..dca18f7 100644 --- a/pages/index.js +++ b/pages/index.js @@ -8,10 +8,10 @@ export default function Home() { <>