import { PengumumanForm } from "../_components/pengumuman-form";
import { Card, CardContent } from "@/components/ui/card";

export default function CreatePengumumanPage() {
  return (
    <div className="flex flex-col gap-6 p-6">
      <div className="flex items-center justify-between">
        <div>
          <h1 className="text-2xl font-bold tracking-tight">Buat Pengumuman</h1>
          <p className="text-muted-foreground">Tambahkan informasi baru untuk sekolah.</p>
        </div>
      </div>

      <Card>
        <CardContent className="p-6">
          <PengumumanForm />
        </CardContent>
      </Card>
    </div>
  );
}
