Back to all case studies

PulseFit Wellness App

HealthSenior Frontend Engineer

PulseFit Wellness App

A habit-first redesign that helps people stay consistent (not guilty)

PulseFit is a mobile-first wellness product redesigned to make onboarding clearer, routines easier to find, and progress more motivating.

Shubha Khadgi6 months1 product lead, 1 researcher, 3 engineers

Research insights

Consistency beats intensity when building habits.

UX Research Lead

Development insights

tsx
// Streak recovery logic
const updateStreak = (currentStreak, didCompleteToday) => {
  if (didCompleteToday) return currentStreak + 1;
  return currentStreak; // No penalty for missing a day
};