"use client";

import ComponentCard from "@/src/components/admin/common/ComponentCard";
import PageProtection from "@/src/components/admin/common/PageProtection";
import AddPressReleaseForm from "./add-press-release";

export default function AddPressReleasePage() {
  return (
    <div className="space-y-6">
      <PageProtection pageSlug="press-release.add-press-release">
        <ComponentCard
          title="Press Release Management | Add Press Release"
          desc="Create, edit, publish, and manage press releases."
        >
          <AddPressReleaseForm />
        </ComponentCard>
      </PageProtection>
    </div>
  );
}
