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

53 lines
1.4 KiB
JavaScript
Raw Normal View History

import React from "react";
import Navbar from "../components/layouts/NavBar.jsx";
import dynamic from "next/dynamic";
2023-06-27 00:50:29 +00:00
import SectionTwo from "../components/layouts/SectionTwo.jsx";
const Section = dynamic(() => import("../components/layouts/Section.jsx"));
const ContactFormSection = dynamic(() =>
2023-05-16 22:42:34 +00:00
import("../components/layouts/ContactFormSection.jsx")
);
export default function Home() {
return (
<>
<Navbar />
<Section
key="getInvolved0"
2023-08-30 23:44:44 +00:00
videoUrl="/get-involved.mp4"
text="get involved"
buttonLink="#contact"
buttonTwoText="say hello"
buttonOneText="watch"
buttonVideoURL="https://odysee.com/@shilohcode:e/higherground:3"
/>
<SectionTwo
2023-08-30 23:44:44 +00:00
text="githaven.org"
buttonText="explore"
buttonLink="https://githaven.org"
></SectionTwo>
<SectionTwo
text="remnant.chat"
2023-08-30 23:44:44 +00:00
buttonText="explore"
buttonLink="https://remnant.chat"
></SectionTwo>
<SectionTwo
2023-07-11 19:18:21 +00:00
text="heartily.work"
2023-08-30 23:44:44 +00:00
buttonText="explore"
2023-07-11 19:18:21 +00:00
buttonLink="https://heartily.work"
></SectionTwo>
2023-08-30 23:44:44 +00:00
<SectionTwo
text="opensource license"
buttonText="explore"
buttonLink="https://license.shilohcode.com"
></SectionTwo>
<ContactFormSection
text="contact us"
buttonText="contact us"
email="hello-izmqxby3qjkffhh6w7a9s2j3qwj7zu93iji7gxjcn@shilohcode.com"
/>
</>
);
}