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

49 lines
1.3 KiB
JavaScript
Raw Permalink 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-08-30 23:44:44 +00:00
import SectionTwo from "../components/layouts/SectionTwo.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"
2023-08-31 01:55:14 +00:00
videoUrlWeb="/about.webm"
videoUrl="/about.mp4"
posterPath="/about.png"
text="about"
2023-08-31 16:52:46 +00:00
buttonTwoText="contact"
buttonLink="#contact"
buttonOneText="watch"
buttonVideoURL="https://odysee.com/@shilohcode:e/about:11"
></Section>
2023-08-30 23:44:44 +00:00
<SectionTwo
2023-08-31 01:55:14 +00:00
text="our creed"
2023-08-30 23:44:44 +00:00
buttonText="explore"
buttonLink="https://creed.shilohcode.com"
></SectionTwo>
<ContactFormSection
text="contact us"
2023-08-31 01:55:14 +00:00
buttonText="copy email"
email="hello-izmqxby3qjkffhh6w7a9s2j3qwj7zu93iji7gxjcn@shilohcode.com"
/>
</>
);
}