import ProjectForm from '@/components/admin/project-form';
import AdminLayout from '@/components/layout/admin-layout';

export default function NewProjectPage() {
  return (
    <AdminLayout>
      <div className="flex flex-1 flex-col space-y-8 p-8">
        <div className="flex items-center justify-between space-y-2">
          <div>
            <h2 className="font-bold text-2xl tracking-tight">
              Create New Project
            </h2>
            <p className="text-muted-foreground">
              Fill out the form below to create a new project.
            </p>
          </div>
        </div>
        <ProjectForm />
      </div>
    </AdminLayout>
  );
}
