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
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";
2023-06-27 00:50:29 +00:00
import StatementOfFaithSection from "../components/layouts/StatementOfFaithSection.jsx";
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>about</title>
<meta name="description" content="about shiloh" />
<meta name="keywords" content="shiloh, about, redemptive tech, Jesus, faith, christian developers" />
</Head>
<Navbar />
2023-04-20 18:18:26 +00:00
<Section
key="aboutSection0"
2023-06-07 00:16:48 +00:00
videoUrl="/true_freedom_optimized.mp4"
2023-04-20 18:18:26 +00:00
text="about"
buttonTwoText="say hello"
2023-04-20 18:18:26 +00:00
buttonLink="#contact"
buttonOneText="watch"
2023-06-07 00:16:48 +00:00
videoId="W60vWdXR1sQ"
2023-04-20 18:18:26 +00:00
>
</Section>
<StatementOfFaithSection/>
<ContactFormSection
text="say hello"
2023-04-20 18:18:26 +00:00
buttonText="contact us"
/>
</>
);
}