We redesigned our homepage at Mistral and a couple of more features across the product on Web and mobile.
There's so much more to come. Super excited 😎.
Services page for OBSCURA studio project!
Been working on finishing up mobile views & responsiveness lately, so hopefully will be sharing the live site soon :)
Since Opus 4.8 is out and more and more designers are getting into Design Engineering, I thought I’d share some of the interaction patterns I use most often:
Use proximity, not just hover. When the cursor gets close, nearby elements can subtly scale and darken based on distance.
It makes interfaces feel more responsive, less binary, and way more alive
onpointermove = e =>
document.querySelectorAll(".dock>*").forEach(el => {
const r = el.getBoundingClientRect();
const t = Math.max(0, 1 - Math.abs(e.clientX - r.x - r.width/2) / 120);
el. style.scale = 1 + t * .5;
});
finally shipped v2 of my portfolio.
rebuilt everything from scratch with a more motion, minimalist UI, polished buttons and custom components.
https://t.co/xVKuH5pAe5
#buildinpublic#workwithme
Good iOS design is weirdly hard to find
This website makes it easier...
@spottedinprod is a curated collection of beautifully designed iOS apps
Perfect for:
• UI inspiration
• interaction ideas
• onboarding flows
• animations + transitions
Strongly recommend!
THIS GUY BUILT A DEAD SIMPLE APP STORE SCREENSHOT MAKER
app store screenshots are one of those things that look easy but take forever to get right
you need the right device frame, the right dimensions for each phone size, text overlays, background colors, and it all has to look professional or nobody downloads your app
most indie devs spend hours in figma doing it manually
this guy just made a tool where you drop in your screenshot and it handles everything
there's still a gap in the market for a proper AI powered screenshot creator that auto generates the whole thing from your app screens
most tools in this space try to do too much and this one just does the one thing you actually need
if you're shipping an app and dreading the screenshot process
this will save you HOURS of work you were never going to enjoy doing anyway