2023-04-17 20:20:39 -07:00
|
|
|
import React from "react";
|
2023-06-06 17:16:48 -07:00
|
|
|
import Head from "next/head";
|
2023-05-16 15:42:34 -07:00
|
|
|
import Navbar from "../components/layouts/navbar.jsx";
|
2023-04-20 13:03:48 -07:00
|
|
|
import dynamic from "next/dynamic";
|
|
|
|
|
2023-05-16 15:42:34 -07:00
|
|
|
const Section = dynamic(() => import("../components/layouts/section.jsx"));
|
2023-04-20 13:03:48 -07:00
|
|
|
const ContactFormSection = dynamic(() =>
|
2023-05-16 15:42:34 -07:00
|
|
|
import("../components/layouts/ContactFormSection.jsx")
|
2023-04-20 13:03:48 -07:00
|
|
|
);
|
2023-04-19 23:58:04 -07:00
|
|
|
|
2023-04-17 20:20:39 -07:00
|
|
|
export default function Home() {
|
|
|
|
return (
|
|
|
|
<>
|
2023-06-06 17:16:48 -07:00
|
|
|
<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>
|
2023-04-17 20:20:39 -07:00
|
|
|
<Navbar />
|
2023-04-18 01:36:50 -07:00
|
|
|
<Section
|
2023-04-18 12:01:04 -07:00
|
|
|
key="section0"
|
2023-05-03 10:47:46 -07:00
|
|
|
videoUrl="/optimized-shiloh-main-banner.mp4"
|
2023-04-18 01:36:50 -07:00
|
|
|
text="redemptive tech in Jesus' name"
|
|
|
|
buttonTwoText="learn more"
|
2023-06-06 17:16:48 -07:00
|
|
|
buttonOneText="watch"
|
|
|
|
videoId="R0QFTSLC1Gg"
|
2023-04-18 12:36:33 -07:00
|
|
|
buttonLink="/about"
|
2023-06-06 17:16:48 -07:00
|
|
|
headingLevel={1}
|
2023-04-18 01:36:50 -07:00
|
|
|
/>
|
|
|
|
<Section
|
2023-04-18 12:01:04 -07:00
|
|
|
key="section1"
|
2023-06-06 17:16:48 -07:00
|
|
|
videoUrl="/true_freedom_optimized.mp4"
|
2023-04-18 01:36:50 -07:00
|
|
|
text="about"
|
2023-06-06 17:16:48 -07:00
|
|
|
buttonOneText="watch"
|
2023-04-18 01:36:50 -07:00
|
|
|
buttonTwoText="learn more"
|
2023-06-06 17:16:48 -07:00
|
|
|
videoId="W60vWdXR1sQ"
|
2023-04-18 12:36:33 -07:00
|
|
|
buttonLink="/about"
|
2023-06-06 17:16:48 -07:00
|
|
|
headingLevel={2}
|
2023-04-18 01:36:50 -07:00
|
|
|
/>
|
|
|
|
<Section
|
2023-04-18 12:01:04 -07:00
|
|
|
key="section2"
|
2023-06-06 17:16:48 -07:00
|
|
|
videoUrl="/higher_ground_optimized.mp4"
|
2023-04-18 01:36:50 -07:00
|
|
|
text="get involved"
|
2023-06-06 17:16:48 -07:00
|
|
|
buttonOneText="watch"
|
2023-04-18 01:36:50 -07:00
|
|
|
buttonTwoText="learn more"
|
2023-06-06 17:16:48 -07:00
|
|
|
videoId="j16NyCutsOo"
|
2023-04-18 12:36:33 -07:00
|
|
|
buttonLink="/getinvolved"
|
2023-06-06 17:16:48 -07:00
|
|
|
headingLevel={2}
|
2023-04-18 01:36:50 -07:00
|
|
|
/>
|
2023-04-19 23:58:04 -07:00
|
|
|
<ContactFormSection
|
2023-06-06 17:16:48 -07:00
|
|
|
text="contact us"
|
|
|
|
buttonText="contact us"
|
|
|
|
buttonLink="https://www.videoask.com/f8fah1r34"
|
2023-04-18 01:36:50 -07:00
|
|
|
/>
|
2023-06-06 17:16:48 -07:00
|
|
|
</>
|
2023-04-17 20:20:39 -07:00
|
|
|
);
|
2023-04-17 17:05:35 -07:00
|
|
|
}
|