1. Technology Stack:
  1. Project Structure:
front_end/ai/
├── src/
│   ├── pages/           # Main page components
│   │   ├── Search/      # Search functionality
│   │   ├── Ignore/      # Ignore frames management
│   │   └── Login/       # Authentication
│   ├── services/        # API services
│   ├── utils/           # Utility functions
│   ├── constants/       # Global constants
│   ├── models/          # Data models
│   └── assets/          # Static assets
  1. Main Features:

A. Authentication System (/pages/Login/):

const LoginPage = () => {
    const [loading, setLoading] = useState(false);
    const [evaluationData, setEvaluationData] = useState<any[]>([]);
    const [sessionId, setSessionId] = useState<string | null>(null);
    // ... login form and session management
};

B. Search Page (/pages/Search/):