This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
old-shiloh-website/pages/getinvolved.js
2023-09-28 14:34:31 -07:00

55 lines
1.5 KiB
JavaScript

import React from "react";
import Navbar from "../components/layouts/NavBar.jsx";
import dynamic from "next/dynamic";
import SectionTwo from "../components/layouts/SectionTwo.jsx";
const Section = dynamic(() => import("../components/layouts/Section.jsx"));
const ContactFormSection = dynamic(() =>
import("../components/layouts/ContactFormSection.jsx")
);
export default function Home() {
return (
<>
<Navbar />
<Section
key="getInvolved0"
videoUrlWeb="get-involved.webm"
videoUrl="/get-involved.mp4"
posterPath="/get-involved.png"
text="get involved"
buttonLink="https://githaven.org"
buttonTwoText="join us"
buttonOneText="watch"
buttonVideoURL="https://odysee.com/@shilohcode:e/higherground:3"
/>
<SectionTwo
text="githaven.org"
buttonText="explore"
buttonLink="https://githaven.org"
></SectionTwo>
<SectionTwo
text="remnant.chat"
buttonText="explore"
buttonLink="https://remnant.chat"
></SectionTwo>
<SectionTwo
text="heartily.work"
buttonText="explore"
buttonLink="https://heartily.work"
></SectionTwo>
<SectionTwo
text="opensource license"
buttonText="explore"
buttonLink="https://license.shilohcode.com"
></SectionTwo>
<ContactFormSection
text="contact us"
buttonText="copy email"
email="hello-izmqxby3qjkffhh6w7a9s2j3qwj7zu93iji7gxjcn@shilohcode.com"
/>
</>
);
}