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

44 lines
1.2 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 (
<>
<Head>
2023-06-07 00:16:48 +00:00
<title>about</title>
<meta name="description" content="about shiloh" />
<meta
name="keywords"
content="shiloh, about, redemptive tech, Jesus, faith, christian developers"
/>
2023-06-07 00:16:48 +00:00
</Head>
<Navbar />
2023-04-20 18:18:26 +00:00
<Section
key="aboutSection0"
videoUrl="/true_freedom_optimized.mp4"
text="about"
buttonTwoText="say hello"
buttonLink="#contact"
buttonOneText="watch"
videoId="W60vWdXR1sQ"
></Section>
<StatementOfFaithSection />
<ContactFormSection
text="contact us"
buttonText="contact us"
email="hello-izmqxby3qjkffhh6w7a9s2j3qwj7zu93iji7gxjcn@shilohcode.com"
/>
</>
);
}