import { Metadata } from "next";
import ContactContent from "./ContactContent";

export const metadata: Metadata = {
  title: "Contact Us",
  description: "Get in touch with Crown Rock Minerals — general inquiries, investor relations, strategic partnerships, media, and careers.",
};

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