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
Raw 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"
content="shiloh is accelerating redemptive technology in Jesus' name."
/>
<meta
name="keywords"
content="shiloh, 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-07 21:13:58 +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"
2023-07-11 19:18:21 +00:00
buttonVideoURL="https://invidious.slipfox.xyz/watch?v=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-08-07 21:13:58 +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-07-11 19:27:59 +00:00
buttonVideoURL="https://invidious.slipfox.xyz/watch?v=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-08-07 21:13:58 +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-07-11 19:27:59 +00:00
buttonVideoURL="https://invidious.slipfox.xyz/watch?v=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"
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
}