import ContactContainer from "./section/ContactContainer"
import { Metadata } from "next"

export const metadata: Metadata = {
  title: "Contact",
}

export default function ContactPage() {
  return <ContactContainer />
}
