Ask HN: Im a back end dev, how do you go from designing the UI with AI?
As I was saying Im a backend dev, I lose my mind writing frontend code, given the power of the new designing tools, what is the typical workflow me as somebody not very good at design to make an UI and then implement it as a front end?
Lets say we use claude design, or the google tool.
4 comments
[ 1.5 ms ] story [ 19.1 ms ] thread1. Find a UI kit ready, shadcn / shadcn-svelte
2. Define my fonts and borders and theme <- My design
3. Implement the business
But in that second step there might be much more to do.
I got a decent design document describing what the app needs to do, including concrete user flows. I've made this with review help from Claude and ChatGPT to catch inconsistencies, or underspecified areas. If porting an old app, use them to reverse-engineer a lot of this from the old code.
I then uploaded that to Claude Design, along with perhaps some screenshots or crude box drawings for reference. Claude Design asks me questions and we iterate a bit.
The I export it to Claude Code and have it implement. I make it add tests using suitable test framework.
I then just iterate. Once the automated tests work I test it manually, describing the issues, eg top banner doesn't stick to the top, some container overflows, or changes I want made, attaching screenshots for reference in some cases.
I ask it to update the automated tests yo catch relevant issues I found, to avoid regression.
At least for fairly straight forward apps I found you come amazingly far without lifting the frontend bonnet.