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/index.js
2023-09-28 14:34:31 -07:00

70 lines
2.0 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 technology reformation in Jesus' name."
/>
<meta
name="keywords"
content="shiloh, tech reform, redemptive tech, Jesus, faith, christian developers"
/>
</Head>
<Navbar />
<Section
key="section0"
videoUrlWeb="/main.webm"
videoUrl="/main.mp4"
posterPath="/main.png"
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"
videoUrlWeb="/about.webm"
videoUrl="/about.mp4"
posterPath="/about.png"
text="about"
buttonOneText="watch"
buttonTwoText="learn more"
buttonVideoURL="https://odysee.com/@shilohcode:e/about:11"
buttonLink="/about"
headingLevel={2}
/>
<Section
key="section2"
videoUrlWeb="get-involved.webm"
videoUrl="/get-involved.mp4"
posterPath="/get-involved.png"
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="copy email"
email="hello-izmqxby3qjkffhh6w7a9s2j3qwj7zu93iji7gxjcn@shilohcode.com"
/>
</>
);
}