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/about.js

42 lines
1.0 KiB
JavaScript

import React from "react";
import Head from "next/head";
import Navbar from "../components/layouts/NavBar.jsx";
import dynamic from "next/dynamic";
import StatementOfFaithSection from "../components/layouts/StatementOfFaithSection.jsx";
const Section = dynamic(() => import("../components/layouts/Section.jsx"));
const ContactFormSection = dynamic(() =>
import("../components/layouts/ContactFormSection.jsx")
);
export default function Home() {
return (
<>
<Head>
<title>about</title>
<meta name="description" content="about shiloh" />
<meta name="keywords" content="shiloh, about, redemptive tech, Jesus, faith, christian developers" />
</Head>
<Navbar />
<Section
key="aboutSection0"
videoUrl="/true_freedom_optimized.mp4"
text="about"
buttonTwoText="say hello"
buttonLink="#contact"
buttonOneText="watch"
videoId="W60vWdXR1sQ"
>
</Section>
<StatementOfFaithSection/>
<ContactFormSection
text="say hello"
buttonText="contact us"
/>
</>
);
}