2023-04-18 19:01:04 +00:00
|
|
|
import React from "react";
|
2023-06-27 00:38:32 +00:00
|
|
|
import Navbar from "../components/layouts/NavBar.jsx";
|
2023-04-20 20:03:48 +00:00
|
|
|
import dynamic from "next/dynamic";
|
2023-06-27 00:50:29 +00:00
|
|
|
import SectionTwo from "../components/layouts/SectionTwo.jsx";
|
2023-04-20 20:03:48 +00:00
|
|
|
|
2023-06-27 00:38:32 +00:00
|
|
|
const Section = dynamic(() => import("../components/layouts/Section.jsx"));
|
2023-04-20 20:03:48 +00:00
|
|
|
const ContactFormSection = dynamic(() =>
|
2023-05-16 22:42:34 +00:00
|
|
|
import("../components/layouts/ContactFormSection.jsx")
|
2023-04-20 20:03:48 +00:00
|
|
|
);
|
|
|
|
|
2023-04-18 19:01:04 +00:00
|
|
|
export default function Home() {
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<Navbar />
|
|
|
|
<Section
|
|
|
|
key="getInvolved0"
|
2023-08-31 01:55:14 +00:00
|
|
|
videoUrlWeb="get-involved.webm"
|
2023-08-30 23:44:44 +00:00
|
|
|
videoUrl="/get-involved.mp4"
|
2023-08-31 01:55:14 +00:00
|
|
|
posterPath="/get-involved.png"
|
2023-04-18 19:01:04 +00:00
|
|
|
text="get involved"
|
2023-04-20 19:27:09 +00:00
|
|
|
buttonLink="#contact"
|
2023-08-31 16:52:46 +00:00
|
|
|
buttonTwoText="contact"
|
2023-07-11 18:17:43 +00:00
|
|
|
buttonOneText="watch"
|
2023-08-07 21:31:33 +00:00
|
|
|
buttonVideoURL="https://odysee.com/@shilohcode:e/higherground:3"
|
2023-04-20 19:27:09 +00:00
|
|
|
/>
|
2023-07-11 18:17:43 +00:00
|
|
|
<SectionTwo
|
2023-08-30 23:44:44 +00:00
|
|
|
text="githaven.org"
|
|
|
|
buttonText="explore"
|
2023-07-11 18:17:43 +00:00
|
|
|
buttonLink="https://githaven.org"
|
|
|
|
></SectionTwo>
|
|
|
|
<SectionTwo
|
|
|
|
text="remnant.chat"
|
2023-08-30 23:44:44 +00:00
|
|
|
buttonText="explore"
|
2023-07-11 18:17:43 +00:00
|
|
|
buttonLink="https://remnant.chat"
|
2023-06-26 23:04:34 +00:00
|
|
|
></SectionTwo>
|
2023-07-11 18:17:43 +00:00
|
|
|
<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"
|
2023-06-26 23:04:34 +00:00
|
|
|
></SectionTwo>
|
2023-08-30 23:44:44 +00:00
|
|
|
<SectionTwo
|
|
|
|
text="opensource license"
|
|
|
|
buttonText="explore"
|
|
|
|
buttonLink="https://license.shilohcode.com"
|
|
|
|
></SectionTwo>
|
|
|
|
|
2023-07-11 18:17:43 +00:00
|
|
|
<ContactFormSection
|
|
|
|
text="contact us"
|
2023-08-31 01:55:14 +00:00
|
|
|
buttonText="copy email"
|
2023-07-11 18:17:43 +00:00
|
|
|
email="hello-izmqxby3qjkffhh6w7a9s2j3qwj7zu93iji7gxjcn@shilohcode.com"
|
|
|
|
/>
|
|
|
|
</>
|
2023-04-18 19:01:04 +00:00
|
|
|
);
|
|
|
|
}
|