import { ContactSection } from "@/components/home/contact-section"
import { Metadata } from "next"

export const metadata: Metadata = {
  title: "Contact Us - CodeframeAI",
  description: "Get in touch with the CodeframeAI team for support, feedback, or inquiries.",
}

export default function ContactPage() {
  return (
    <main className="pt-0 min-h-screen bg-background">
      <ContactSection className="!pt-12" theme="light" />
    </main>
  )
}
