30 lines
768 B
JavaScript
30 lines
768 B
JavaScript
import React from "react";
|
|
import Head from "next/head";
|
|
import Navbar from "../components/layouts/NavBar.jsx";
|
|
import dynamic from "next/dynamic";
|
|
|
|
const ContactFormSection = dynamic(() =>
|
|
import("../components/layouts/ContactFormSection.jsx")
|
|
);
|
|
|
|
export default function Home() {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>contact us</title>
|
|
<meta name="description" content="contact shiloh" />
|
|
<meta
|
|
name="keywords"
|
|
content="shiloh, contact, redemptive tech, Jesus, faith, christian developers"
|
|
/>
|
|
</Head>
|
|
<Navbar />
|
|
<ContactFormSection
|
|
text="contact us"
|
|
buttonText="copy email"
|
|
email="hello-izmqxby3qjkffhh6w7a9s2j3qwj7zu93iji7gxjcn@shilohcode.com"
|
|
/>
|
|
</>
|
|
);
|
|
}
|