import { GalleryForm } from "@/components/admin/gallery/GalleryForm";
import { createGallery } from "../actions";

export default function CreateGalleryPage() {
  return (
    <div>
      <h1 className="text-2xl font-semibold text-heading">Tambah Foto</h1>
      <p className="mt-1 text-sm text-body">
        Unggah foto baru untuk galeri.
      </p>

      <div className="mt-6 rounded-2xl bg-white p-8 shadow-sm">
        <GalleryForm action={createGallery} submitLabel="Simpan Foto" />
      </div>
    </div>
  );
}
