2023-12-07 15:35:45 +00:00
|
|
|
import * as React from "react"
|
|
|
|
|
|
|
|
import { PageIntro } from "../components/PageIntro"
|
|
|
|
|
|
|
|
export function Contact() {
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<PageIntro eyebrow="Contact Us" title="Questions or Comments?">
|
2023-12-12 15:30:20 +00:00
|
|
|
<p>
|
|
|
|
Tell us how we can improve our site by leaving an issue at{" "}
|
|
|
|
<a
|
|
|
|
target="_blank"
|
|
|
|
className="underline"
|
|
|
|
href="https://github.com/boardwise-gg/website"
|
|
|
|
>
|
|
|
|
our GitHub repo
|
|
|
|
</a>
|
|
|
|
.
|
|
|
|
</p>
|
2023-12-07 15:35:45 +00:00
|
|
|
</PageIntro>
|
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|