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

62 lines
1.7 KiB
JavaScript
Raw Normal View History

import React from "react";
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 (
<>
<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-05-03 17:47:46 +00:00
buttonOneText="watch" videoId="R0QFTSLC1Gg"
buttonLink="/about"
2023-04-18 08:36:50 +00:00
/>
<Section
key="section1"
videoUrl="https://vid.puffyan.us/latest_version?id=tQG6jYy9xto&itag=22&local=true"
2023-04-18 08:36:50 +00:00
text="about"
buttonOneText="watch"
buttonTwoText="learn more"
buttonLink="/about"
2023-04-18 08:36:50 +00:00
/>
<Section
key="section2"
videoUrl="https://vid.puffyan.us/latest_version?id=fVgq6j-krzU&itag=22"
2023-04-18 08:36:50 +00:00
text="get involved"
buttonOneText="watch"
buttonTwoText="learn more"
buttonLink="/getinvolved"
2023-04-18 08:36:50 +00:00
/>
<Section
key="section3"
videoUrl="https://vid.puffyan.us/latest_version?id=LBNDfxjEYlA&itag=22"
2023-04-18 08:36:50 +00:00
text="projects"
buttonOneText="watch"
buttonTwoText="learn more"
buttonLink="/projects"
2023-04-18 08:36:50 +00:00
/>
<Section
key="section4"
videoUrl="https://vid.puffyan.us/latest_version?id=J33nDgS3uUY&itag=22"
2023-04-18 08:36:50 +00:00
text="hire us"
buttonOneText="watch"
buttonTwoText="learn more"
buttonLink="/contactus"
2023-04-18 08:36:50 +00:00
/>
<ContactFormSection
text="contact us"
buttonText="contact us"
buttonLink="https://www.videoask.com/f8fah1r34"
2023-04-18 08:36:50 +00:00
/>
</>
);
2023-04-18 00:05:35 +00:00
}