// the find
Nutlope/logocreator
A free + OSS logo generator powered by Flux on Together AI
A Next.js app that generates logos by prompting Flux Pro 1.1 via Together AI. You describe your company, pick a style, and get a PNG back. It's a demo app more than a production tool — Nutlope built it to showcase Together AI's image generation, and the hosted version at logo-creator.io is the real product.
Rate limiting via Upstash Redis is already wired in, so you can't trivially abuse the hosted API. Auth via Clerk means you can gate generation behind login without writing it yourself. The stack is minimal and readable — one API route does all the work, easy to follow if you're learning how to wire up image generation APIs. Good starting point for anyone building a similar image-generation SaaS.
Output is PNG only — no SVG, which makes it nearly useless for actual logo work (you can't resize a PNG logo without it pixelating on a retina display or in print). The prompt engineering is black-box; you can't see or tune how your inputs get turned into the Flux prompt, so you're flying blind when results are bad. No logo history or dashboard yet (it's on the todo list), so every session starts fresh. Heavily coupled to Together AI — swapping the image model requires touching the route directly, there's no abstraction layer.