44 lines
1.2 KiB
JavaScript
44 lines
1.2 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="contact us"
|
|
buttonText="contact us"
|
|
email="hello-izmqxby3qjkffhh6w7a9s2j3qwj7zu93iji7gxjcn@shilohcode.com"
|
|
/>
|
|
</>
|
|
);
|
|
}
|