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

47 lines
1.3 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"
//videoUrl="/higher_ground_optimized.mp4"
text="get involved"
buttonLink="#contact"
buttonTwoText="say hello"
buttonOneText="watch"
buttonVideoURL="https://odysee.com/@shilohcode:e/higherground:3"
/>
<SectionTwo
text="githaven"
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>
<ContactFormSection
text="contact us"
buttonText="contact us"
email="hello-izmqxby3qjkffhh6w7a9s2j3qwj7zu93iji7gxjcn@shilohcode.com"
/>
</>
);
}