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

28 lines
658 B
JavaScript
Raw Normal View History

import React from "react";
2023-06-07 00:16:48 +00:00
import Head from "next/head";
2023-05-16 22:42:34 +00:00
import Navbar from "../components/layouts/navbar.jsx";
import dynamic from "next/dynamic";
const ContactFormSection = dynamic(() =>
2023-05-16 22:42:34 +00:00
import("../components/layouts/ContactFormSection.jsx")
);
export default function Home() {
return (
<>
2023-06-07 00:16:48 +00:00
<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="say hello"
buttonText="contact us"
/>
</>
);
}