feat: professional UI redesign + first frontend tests + tutorial video (v1.1.0)#1
Merged
Merged
Conversation
…o (v1.1.0) Frontend visual redesign to a Stripe Dashboard-inspired aesthetic, the first round of frontend test infrastructure (Vitest + RTL, 40 tests across 5 suites), a tutorial-video embed at the top of the README, and the first lockstep version bump to v1.1.0. ## Frontend visual (token-based) - frontend/app/globals.css — full token system (Stripe palette, layered duotone shadows, sharp radii, 15px html base, restored typography ladder), and new utilities: .step-badge, .hero-backdrop, .eyebrow, status-dot helpers, .animate-status-pulse. - frontend/app/page.tsx — full-bleed hero header with Bot brand mark, bold wordmark, tagline, and live BackendStatusChip pill (model + backend + connection status pulled from /api/agent-status). - All frontend/components/* swept: dropped 9 bulky padded icon containers in favor of inline 16px icons; added numbered step badges (1-4) on workflow sections; restored confident heading sizes; denser column-tag chips; slimmer progress bar; eyebrow-style form labels. - KPI stat-card row (Total / Completed / In progress / Failed) above the results table. - FileUpload empty-state polish: 64px gradient icon zone, workflow step trail "1 Upload · 2 Configure · 3 Run" underneath. ## Bug fix - FileUpload: full drop-zone is now clickable. Was previously only the inline "Click to upload" link; the rest of the dashed box did nothing despite visually inviting clicks. role=button + Enter/Space keyboard activation, full-area click handler. ## Tests - Vitest 4.1.5 + @testing-library/react 16.3.2 + jsdom 29.1.1 + @testing-library/jest-dom 6.9.1 + @testing-library/user-event 14.6.1 + @vitejs/plugin-react 6.0.1 — all pinned to actual latest stable. - Five suites, 40 tests total: profileUtils (incl. legacy profile migration — most load-bearing test per CLAUDE.md), csvParser, ColumnTags, OutputSchemaBuilder, ResultsTable. - .github/workflows/test.yml extended with a frontend job (lint + vitest) running in parallel to backend pytest. ## Repo conventions (first-time additions) - CHANGELOG.md (Keep-a-Changelog) - CONTRIBUTING.md (Conventional Commits, branch naming, squash-merge, lockstep versioning) - SECURITY.md (private vulnerability reporting) - .github/PULL_REQUEST_TEMPLATE.md ## Documentation - README.md: tutorial video embed at top (https://youtu.be/wnuQufwRAXE). ## Version (lockstep) - frontend 1.0.0 -> 1.1.0 (frontend/package.json) - backend 1.0.0 -> 1.1.0 (backend/API/api.py 'version' literal) - Both bump together. Tag: v1.1.0. ## Breaking changes None. All HTTP API contracts, component props, profile JSON shape, and runtime behavior are identical to v1.0.0. Pure visual + tooling refresh.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Frontend visual redesign to a Stripe Dashboard-inspired aesthetic, the
first round of frontend test infrastructure (Vitest + RTL, 40 tests
across 5 suites), a tutorial-video embed at the top of the README, and
the first lockstep version bump to v1.1.0.
Changes
Frontend visual (token-based)
frontend/app/globals.css— full token system (Stripe palette, layeredduotone shadows, sharp radii), 15px html base, restored typography
ladder, new utilities (
.step-badge,.hero-backdrop,.eyebrow,status-dot helpers,
.animate-status-pulse).frontend/app/page.tsx— full-bleed hero header with Bot brand mark,bold wordmark, tagline, and live
BackendStatusChippill (model +backend + connection status pulled from
/api/agent-status).frontend/components/*swept: dropped 9 bulky padded iconcontainers in favor of inline 16px icons, added numbered step badges
(1–4) on workflow sections, restored confident heading sizes, denser
column-tag chips, slimmer progress bar, eyebrow-style form labels.
results table.
FileUploadempty-state polish: 64px gradient icon zone, workflowstep trail "1 Upload · 2 Configure · 3 Run" underneath.
Bug fix
FileUpload: full drop-zone is now clickable (was previously only theinline "Click to upload" link — the rest of the dashed box did
nothing despite visually inviting clicks).
Tests
@testing-library/jest-dom 6.9.1 + @testing-library/user-event 14.6.1
— all pinned to actual latest stable.
profileUtils(incl. legacy profilemigration — most load-bearing test per CLAUDE.md),
csvParser,ColumnTags,OutputSchemaBuilder,ResultsTable..github/workflows/test.ymlextended with afrontendjob(lint + test) running in parallel to backend pytest.
Repo conventions (first-time additions)
CHANGELOG.md(Keep-a-Changelog)CONTRIBUTING.md(Conventional Commits, branch naming, squash-merge,lockstep versioning)
SECURITY.md(private vulnerability reporting).github/PULL_REQUEST_TEMPLATE.mdDocumentation
README.md: tutorial video embed at top(youtu.be/wnuQufwRAXE).
Version
1.0.0→1.1.0(frontend/package.json)1.0.0→1.1.0(backend/API/api.pyversionliteral)v1.1.0.Test plan
cd frontend && npm install && npm run lint && npm run test→ 40 tests pass, 0 lint warnings
cd backend && pytest tests/ -v→ existing suite still greendefine output schema, run with concurrency 2, verify stat cards
update live, export CSV
docker compose -f docker-compose.local.yml up --build) starts cleanly, frontend at :3000 healthyVersioning
frontend/package.json) — new version:1.1.0backend/API/api.py) — new version:1.1.0CHANGELOG.mdupdated in this PRBreaking changes
None. All HTTP API contracts, component props, profile JSON shape, and
runtime behavior are identical to v1.0.0. Pure visual + tooling
refresh.
Checklist
<type>/<short-description>