tony
82b92d0f7e
TypeError: Cannot read properties of null (reading 'pause') Source Components/Layout/section.jsx (22:27) @ pause Added additional pages. Created unique id for video components.
19 lines
468 B
JavaScript
19 lines
468 B
JavaScript
import React from "react";
|
|
import Navbar from "../Components/Layout/navbar.jsx";
|
|
import Section from "../Components/Layout/section.jsx"
|
|
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<Navbar />
|
|
<Section
|
|
key="getInvolved0"
|
|
videoUrl="https://vid.puffyan.us/latest_version?id=--khbXchTeE&itag=22"
|
|
text="get involved"
|
|
buttonTwoText="learn more"
|
|
buttonOneText="watch" videoId="uu01xBw_BVE"
|
|
/>
|
|
</>
|
|
);
|
|
}
|