16 lines
299 B
JavaScript
16 lines
299 B
JavaScript
import { ContactHero } from "@/components/ContactHero"
|
|
import { Header } from "@/components/Header"
|
|
import { Footer } from "@/components/Footer"
|
|
|
|
export default function Contact() {
|
|
return (
|
|
<>
|
|
<Header />
|
|
<main>
|
|
<ContactHero />
|
|
</main>
|
|
<Footer />
|
|
</>
|
|
)
|
|
}
|