feat(users): implement user following system and following feed

Add follow/unfollow actions and social stats to user profiles
Introduce Following feed scope in Life view
Add notifications for new followers
This commit is contained in:
2026-05-04 15:49:57 +08:00
parent 016364a8b8
commit 8cb8190554
11 changed files with 472 additions and 18 deletions

View File

@@ -6387,6 +6387,17 @@ button:disabled,
grid-template-columns: repeat(4, minmax(0, 1fr));
}
.profile-stat-strip--social {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.profile-follow-actions {
display: flex;
align-items: center;
gap: 12px;
flex-wrap: wrap;
}
.profile-stat-grid {
grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
}