feat: ship creator journey v2 and profile updates

This commit is contained in:
2026-04-12 21:42:07 +02:00
parent a2457f4e49
commit d5cff21ea2
335 changed files with 20147 additions and 1545 deletions

View File

@@ -34,7 +34,7 @@ export default function Topbar({ user = null }) {
>
<img
src={user.avatarUrl || DEFAULT_AVATAR}
alt={user.displayName}
alt=""
className="w-7 h-7 rounded-full object-cover ring-1 ring-white/10"
onError={(e) => { e.currentTarget.src = DEFAULT_AVATAR }}
/>
@@ -47,7 +47,7 @@ export default function Topbar({ user = null }) {
<a href={`/@${user.username}`} className="flex items-center gap-2 px-4 py-2 text-sm hover:bg-white/5">
<img
src={user.avatarUrl || DEFAULT_AVATAR}
alt={user.displayName}
alt=""
className="w-6 h-6 rounded-full object-cover"
onError={(e) => { e.currentTarget.src = DEFAULT_AVATAR }}
/>