solventum-image-metadata/frontend/tailwind.config.js
SamoilenkoVadym 4eaeaf998f feat(frontend): add React SPA with TypeScript
- 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>
2026-02-09 13:14:46 +00:00

19 lines
326 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'oliver-gold': {
400: '#FFC407',
500: '#e6b007',
600: '#cc9d06',
},
},
},
},
plugins: [],
}