import { AdminPageHeader } from "@/components/admin/page-header";
import { IndustriesForm } from "@/components/admin/industries-form";

export default function NewIndustryPage() {
  return (
    <>
      <AdminPageHeader title="New Industry" description="Add a new industry sector to the Industries page." />
      <IndustriesForm isNew />
    </>
  );
}
