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

export const metadata: Metadata = {
  title: "Media Center",
  description: "Latest news, industry insights, reports, and photo gallery from Crown Rock Minerals.",
};

export default function MediaPage() {
  return <MediaContent />;
}
