- Create React 18 + TypeScript + Vite application - Implement Zustand state management (auth, files) - Add Axios API client with JWT auth interceptors - Create drag-drop file upload with react-dropzone - Create metadata editor with validation - Add login page with SSO support - Configure Tailwind CSS for styling - Setup routing with React Router Components created: - LoginPage - Authentication UI - DashboardPage - Main application - FileUploadZone - Drag-drop upload - FileList - File list with batch operations - FileItem - File card with metadata editor Features: - JWT token auto-refresh on 401 - Character counters for metadata fields - Toast notifications for user feedback - Responsive design with Tailwind Co-Authored-By: Claude Sonnet 4.5 (1M context) <noreply@anthropic.com>
13 lines
374 B
HTML
13 lines
374 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Oliver Metadata Tool v4.0</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|