blob: e75ab1fb2ea9da68c767330d4dab5325b54be81b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import InfoBar from "~/components/InfoBar/"
import ContactForm from "~/components/ContactForm"
export default function Contact() {
return (
<>
<h1 className="pageTitle">
Contact
</h1>
<main className="mainColumn card">
<InfoBar>
Be nice. Please don't make us regret putting this here
</InfoBar>
<ContactForm/>
</main>
</>
)
}
|