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

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 redemptive technology in Jesus' name."
/>
<meta
name="keywords"
content="shiloh, redemptive tech, Jesus, faith, christian developers"
/>
</Head>
<Navbar />
<Section
key="section0"
//videoUrl="/optimized-shiloh-main-banner.mp4"
text="redemptive tech in Jesus' name"
buttonTwoText="learn more"
buttonOneText="watch"
buttonVideoURL="https://odysee.com/@shilohcode:e/standwithus:0"
buttonLink="/about"
headingLevel={1}
/>
<Section
key="section1"
//videoUrl="/true_freedom_optimized.mp4"
text="about"
buttonOneText="watch"
buttonTwoText="learn more"
buttonVideoURL="https://odysee.com/@shilohcode:e/about:11"
buttonLink="/about"
headingLevel={2}
/>
<Section
key="section2"
//videoUrl="/higher_ground_optimized.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"
/>
</>
);
}