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

18 lines
388 B
JavaScript

import React from "react";
import Navbar from "../Components/Layout/navbar.jsx";
import Section from "../Components/Layout/section.jsx"
import ContactFormSection from "@/Components/Layout/ContactFormSection.jsx";
export default function Home() {
return (
<>
<Navbar />
<ContactFormSection
text="say hello"
buttonText="contact us"
/>
</>
);
}