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.
tony f4d67450f0 Added contact button that calls the VideoAsk
widget and opens the chat window.
2023-04-20 10:31:32 -07:00

60 lines
1.7 KiB
JavaScript

import React from "react";
import Navbar from "../Components/Layout/navbar.jsx";
import Section from "../Components/Layout/section.jsx"
import ContactFormSection from "@/Components/Layout/ContactFormSection.jsx";
export default function Home() {
return (
<>
<Navbar />
<Section
key="section0"
videoUrl="https://vid.puffyan.us/latest_version?id=--khbXchTeE&itag=22"
text="redemptive tech in Jesus' name"
buttonTwoText="learn more"
buttonOneText="watch" videoId="uu01xBw_BVE"
buttonLink="/about"
/>
<Section
key="section1"
videoUrl="https://vid.puffyan.us/latest_version?id=tQG6jYy9xto&itag=22&local=true"
text="about"
buttonOneText="watch"
buttonTwoText="learn more"
buttonLink="/about"
/>
<Section
key="section2"
videoUrl="https://vid.puffyan.us/latest_version?id=fVgq6j-krzU&itag=22"
text="get involved"
buttonOneText="watch"
buttonTwoText="learn more"
buttonLink="/getinvolved"
/>
<Section
key="section3"
videoUrl="https://vid.puffyan.us/latest_version?id=LBNDfxjEYlA&itag=22"
text="projects"
buttonOneText="watch"
buttonTwoText="learn more"
buttonLink="/projects"
/>
<Section
key="section4"
videoUrl="https://vid.puffyan.us/latest_version?id=J33nDgS3uUY&itag=22"
text="hire us"
buttonOneText="watch"
buttonTwoText="learn more"
buttonLink="/contactus"
/>
<ContactFormSection
text="contact us"
buttonText="contact us"
buttonLink="https://www.videoask.com/f8fah1r34"
/>
</>
);
}