You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
402 B
TypeScript

import InfoBar from "~/components/InfoBar/"
import ContactForm from "~/components/ContactForm"
export default function Contact() {
return (
<>
<h1 className="pageTitle">
Contact
</h1>
<main className="mainColumn">
<InfoBar>
Be nice. Please don't make us regret putting this here
</InfoBar>
<ContactForm/>
</main>
</>
)
}