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/contactus.js
2023-08-30 18:55:14 -07:00

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"
/>
</>
);
}