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

58 lines
1.6 KiB
JavaScript
Raw Normal View History

import React from "react";
2023-06-07 00:16:48 +00:00
import Head from "next/head";
2023-05-16 22:42:34 +00:00
import Navbar from "../components/layouts/navbar.jsx";
import dynamic from "next/dynamic";
2023-05-16 22:42:34 +00:00
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" content="shiloh is accelerating redemptive technology in Jesus' name." />
<meta name="keywords" content="shiloh, redemptive tech, Jesus, faith, christian developers" />
</Head>
<Navbar />
2023-04-18 08:36:50 +00:00
<Section
key="section0"
2023-05-03 17:47:46 +00:00
videoUrl="/optimized-shiloh-main-banner.mp4"
2023-04-18 08:36:50 +00:00
text="redemptive tech in Jesus' name"
buttonTwoText="learn more"
2023-06-07 00:16:48 +00:00
buttonOneText="watch"
videoId="R0QFTSLC1Gg"
buttonLink="/about"
2023-06-07 00:16:48 +00:00
headingLevel={1}
2023-04-18 08:36:50 +00:00
/>
<Section
key="section1"
2023-06-07 00:16:48 +00:00
videoUrl="/true_freedom_optimized.mp4"
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"
2023-06-07 00:16:48 +00:00
videoId="W60vWdXR1sQ"
buttonLink="/about"
2023-06-07 00:16:48 +00:00
headingLevel={2}
2023-04-18 08:36:50 +00:00
/>
<Section
key="section2"
2023-06-07 00:16:48 +00:00
videoUrl="/higher_ground_optimized.mp4"
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"
2023-06-07 00:16:48 +00:00
videoId="j16NyCutsOo"
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"
buttonText="contact us"
buttonLink="https://www.videoask.com/f8fah1r34"
2023-04-18 08:36:50 +00:00
/>
2023-06-07 00:16:48 +00:00
</>
);
2023-04-18 00:05:35 +00:00
}