14 lines
286 B
TypeScript
14 lines
286 B
TypeScript
|
import * as React from "react"
|
||
|
|
||
|
import { PageIntro } from "../components/PageIntro"
|
||
|
|
||
|
export function Contact() {
|
||
|
return (
|
||
|
<>
|
||
|
<PageIntro eyebrow="Contact Us" title="Questions or Comments?">
|
||
|
<p>Tell us how we can improve our site.</p>
|
||
|
</PageIntro>
|
||
|
</>
|
||
|
)
|
||
|
}
|