import React from 'react'; import { X, Sparkles } from 'lucide-react'; const CreateTaskModal = ({ currentProject, onClose, onTaskCreated }) => { return (
{/* Header */}

Create AI-Generated Task

{/* Content */}
{/* AI-First Approach */}

💡 Pro Tip: Ask Claude Code Directly!

You can simply ask Claude Code in the chat to create tasks for you. The AI assistant will automatically generate detailed tasks with research-backed insights.

Example:

"Please add a new task to implement user profile image uploads using Cloudinary, research the best approach."

This runs: task-master add-task --prompt="Implement user profile image uploads using Cloudinary" --research

{/* Learn More Link */}

For more examples and advanced usage patterns:

View TaskMaster Documentation →
{/* Footer */}
); }; export default CreateTaskModal;