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

70 lines
2.0 KiB
JavaScript
Raw Permalink Normal View History

import React from "react";
2023-06-07 00:16:48 +00:00
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(() =>
2023-05-16 22:42:34 +00:00
import("../components/layouts/ContactFormSection.jsx")
);
export default function Home() {
return (
<>
2023-06-07 00:16:48 +00:00
<Head>
<title>shiloh code</title>
<meta
name="description"
2023-09-28 21:34:31 +00:00
content="shiloh is accelerating technology reformation in Jesus' name."
/>
<meta
name="keywords"
2023-09-28 21:34:31 +00:00
content="shiloh, tech reform, redemptive tech, Jesus, faith, christian developers"
/>
2023-06-07 00:16:48 +00:00
</Head>
<Navbar />
2023-04-18 08:36:50 +00:00
<Section
key="section0"
2023-08-31 01:55:14 +00:00
videoUrlWeb="/main.webm"
2023-08-30 23:44:44 +00:00
videoUrl="/main.mp4"
2023-08-31 01:55:14 +00:00
posterPath="/main.png"
2023-08-30 23:44:44 +00:00
text="tech reform in Jesus' name"
2023-04-18 08:36:50 +00:00
buttonTwoText="learn more"
2023-06-07 00:16:48 +00:00
buttonOneText="watch"
buttonVideoURL="https://odysee.com/@shilohcode:e/standwithus:0"
buttonLink="/about"
2023-06-07 00:16:48 +00:00
headingLevel={1}
2023-04-18 08:36:50 +00:00
/>
<Section
key="section1"
2023-08-31 01:55:14 +00:00
videoUrlWeb="/about.webm"
videoUrl="/about.mp4"
posterPath="/about.png"
2023-04-18 08:36:50 +00:00
text="about"
2023-06-07 00:16:48 +00:00
buttonOneText="watch"
2023-04-18 08:36:50 +00:00
buttonTwoText="learn more"
buttonVideoURL="https://odysee.com/@shilohcode:e/about:11"
buttonLink="/about"
2023-06-07 00:16:48 +00:00
headingLevel={2}
2023-04-18 08:36:50 +00:00
/>
<Section
key="section2"
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 08:36:50 +00:00
text="get involved"
2023-06-07 00:16:48 +00:00
buttonOneText="watch"
2023-04-18 08:36:50 +00:00
buttonTwoText="learn more"
buttonVideoURL="https://odysee.com/@shilohcode:e/higherground:3"
buttonLink="/getinvolved"
2023-06-07 00:16:48 +00:00
headingLevel={2}
2023-04-18 08:36:50 +00:00
/>
<ContactFormSection
2023-06-07 00:16:48 +00:00
text="contact us"
2023-08-31 01:55:14 +00:00
buttonText="copy email"
email="hello-izmqxby3qjkffhh6w7a9s2j3qwj7zu93iji7gxjcn@shilohcode.com"
2023-04-18 08:36:50 +00:00
/>
2023-06-07 00:16:48 +00:00
</>
);
2023-04-18 00:05:35 +00:00
}