import React from "react";
import Navbar from "../Components/Layout/navbar.jsx";
import dynamic from "next/dynamic";
const Section = dynamic(() => import("../Components/Layout/section.jsx"));
const ContactFormSection = dynamic(() =>
import("../Components/Layout/ContactFormSection.jsx")
);
export default function Home() {
return (
<>
<Navbar />
<Section
key="getInvolved0"
videoUrl="https://vid.puffyan.us/latest_version?id=--khbXchTeE&itag=22"
text="get involved"
buttonLink="#contact"
buttonTwoText="say hello"
buttonOneText="watch" videoId="uu01xBw_BVE"
/>
key="getInvolved1"
text="Community"
buttonLink="/"
buttonTwoText="Join Us"
key="getInvolved2"
text="Intern"
buttonTwoText="reach out"
key="getInvolved3"
text="Resources"
buttonLink=""
buttonTwoText=""
text="Newsletter"
buttonTwoText="Join Our Newsletter"
<ContactFormSection
text="say hello"
buttonText="contact us"
</>
}