Your Name
feat: UI improvements and error suppression - Enhanced dashboard and market pages with improved header buttons, logo, and currency symbol display - Stopped animated ticker - Removed pie chart legends - Added error suppressor for external service errors (SSE, Permissions-Policy warnings) - Improved header button prominence and icon appearance - Enhanced logo with glow effects and better design - Fixed currency symbol visibility in market tables
8b7b267 | # Git | |
| .git | |
| .gitignore | |
| .gitattributes | |
| # Python | |
| __pycache__ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| .Python | |
| env/ | |
| venv/ | |
| ENV/ | |
| .venv | |
| # IDE | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| .DS_Store | |
| # Testing | |
| .pytest_cache/ | |
| .coverage | |
| htmlcov/ | |
| *.log | |
| # Documentation (not needed in container) | |
| *.md | |
| !README.md | |
| # Archive | |
| archive/ | |
| NewResourceApi/ | |
| # Temporary files | |
| *.tmp | |
| *.bak | |
| *~ | |
| .cache/ | |
| # Data files (will be created in container) | |
| data/*.db | |
| *.sqlite | |
| *.sqlite3 | |
| # Test files | |
| test_*.py | |
| *_test.py | |
| count_resources.py | |
| extract_docx_content.py | |
| # Results | |
| *_results.json | |
| *_test_results.json | |
| # Node modules (if any) | |
| node_modules/ | |
| # Environment files (use HF Spaces secrets instead) | |
| .env | |
| .env.local | |
| .env.*.local | |