64 lines
1.8 KiB
JavaScript
64 lines
1.8 KiB
JavaScript
import React from "react";
|
|
import Head from "next/head";
|
|
import Navbar from "../components/layouts/NavBar.jsx";
|
|
import dynamic from "next/dynamic";
|
|
|
|
const Section = dynamic(() => import("../components/layouts/Section.jsx"));
|
|
const ContactFormSection = dynamic(() =>
|
|
import("../components/layouts/ContactFormSection.jsx")
|
|
);
|
|
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>shiloh code</title>
|
|
<meta
|
|
name="description"
|
|
content="shiloh is accelerating reforming technology in Jesus' name."
|
|
/>
|
|
<meta
|
|
name="keywords"
|
|
content="shiloh, redemptive tech, Jesus, faith, christian developers"
|
|
/>
|
|
</Head>
|
|
<Navbar />
|
|
<Section
|
|
key="section0"
|
|
videoUrl="/main.mp4"
|
|
text="tech reform in Jesus' name"
|
|
buttonTwoText="learn more"
|
|
buttonOneText="watch"
|
|
buttonVideoURL="https://odysee.com/@shilohcode:e/standwithus:0"
|
|
buttonLink="/about"
|
|
headingLevel={1}
|
|
/>
|
|
<Section
|
|
key="section1"
|
|
videoUrl="/about2.mp4"
|
|
text="about"
|
|
buttonOneText="watch"
|
|
buttonTwoText="learn more"
|
|
buttonVideoURL="https://odysee.com/@shilohcode:e/about:11"
|
|
buttonLink="/about"
|
|
headingLevel={2}
|
|
/>
|
|
<Section
|
|
key="section2"
|
|
videoUrl="/get-involved.mp4"
|
|
text="get involved"
|
|
buttonOneText="watch"
|
|
buttonTwoText="learn more"
|
|
buttonVideoURL="https://odysee.com/@shilohcode:e/higherground:3"
|
|
buttonLink="/getinvolved"
|
|
headingLevel={2}
|
|
/>
|
|
<ContactFormSection
|
|
text="contact us"
|
|
buttonText="contact us"
|
|
email="hello-izmqxby3qjkffhh6w7a9s2j3qwj7zu93iji7gxjcn@shilohcode.com"
|
|
/>
|
|
</>
|
|
);
|
|
}
|