Internal job tracking tool
A lightweight internal app that gave the team one view of active work — status, notes, and priority — instead of three different places to check.
hero screenshot — replace
Work status lived in a spreadsheet, a group chat, and people's heads. The tool put status, notes, and priority on one screen so nobody had to reconstruct the day from three sources. It stayed deliberately small: no accounts to manage, no workflow the team had to learn.
Details
- Role
- Frontend and internal tools
- Year
- 2025
- Stack
- React · TypeScript · Forms · Internal ops
- Sit with the existing spreadsheet and find where it actually breaks down.
- Build the smallest version that replaces it end to end.
- Fix the friction points that only show up in daily use.
type Job = {
id: string
status: "new" | "scheduled" | "in-progress" | "done"
priority: 1 | 2 | 3
notes: string
}