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

22 lines
394 B
JavaScript
Raw Normal View History

import React from "react";
import Navbar from "../components/Layout/navbar.jsx";
import dynamic from "next/dynamic";
const ContactFormSection = dynamic(() =>
import("../components/Layout/ContactFormSection.jsx")
);
export default function Home() {
return (
<>
<Navbar />
<ContactFormSection
text="say hello"
buttonText="contact us"
/>
</>
);
}