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

57 lines
1.6 KiB
JavaScript
Raw Normal View History

2023-04-18 00:05:35 +00:00
import React from "react";
2023-04-18 08:36:50 +00:00
import Navbar from "../Components/Layout/navbar.jsx";
import Section from "../Components/Layout/section.jsx"
import { motion } from "framer-motion";
2023-04-18 00:05:35 +00:00
export default function Home() {
return (
<>
<Navbar />
2023-04-18 08:36:50 +00:00
<Section
key="section0"
videoUrl="https://vid.puffyan.us/latest_version?id=--khbXchTeE&itag=22"
2023-04-18 08:36:50 +00:00
text="redemptive tech in Jesus' name"
buttonTwoText="learn more"
buttonOneText="watch" videoId="uu01xBw_BVE"
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"
/>
<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"
/>
<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"
/>
<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"
/>
<Section
key="section5"
videoUrl="https://vid.puffyan.us/latest_version?id=mAg8UyDt_sw&itag=22"
2023-04-18 08:36:50 +00:00
text="contact us"
buttonOneText="watch"
buttonTwoText="learn more"
/>
</>
);
2023-04-18 00:05:35 +00:00
}