#Frontend

4 items tagged “Frontend

TILFrontend2 min read

Using Framer Alongside a Development Workflow, Not Instead of One

TIL that building the Clonify Framer plugin taught me Framer is a genuinely different target than a normal web build — its plugin runtime and code-component model don't map 1:1 onto React conventions.

#React
TILReact2 min read

Turning Figma Designs Into Reusable React Components

TIL that building each screen straight from its Figma frame produced pixel-accurate but unreusable components — the fix was designing the component API from the design system's tokens, not from any one screen.

#React
TILFrontend3 min read

Designing a Dispatch Management Dashboard for Real Operations, Not a Generic Admin Panel

TIL that a dispatch dashboard built around 'show all the order fields' overwhelmed the person actually using it — the redesign that worked started from what a dispatcher needs to decide, not what data exists.

#React
TILFrontend2 min read

Converting API Timestamps to the User's Local Time Instead of Hardcoding Dubai Time

TIL that hardcoding a UTC+4 offset for timestamps because most orders happened to be local worked right up until a driver or a server ended up in a different timezone.

#JavaScript