feat: profile picture

This commit is contained in:
Henry
2025-01-21 22:41:04 +00:00
parent a162624eb8
commit ef8f42a460
16 changed files with 303 additions and 59 deletions

View File

@@ -58,7 +58,7 @@ export default function SideNavigation({
<li key={item.name}>
<ReactiveButton
href={item.href}
current={pathname?.includes(item.href)}
current={pathname.includes(item.href)}
name={item.name}
json={item.icon}
/>
@@ -67,8 +67,8 @@ export default function SideNavigation({
</ul>
</div>
<UserMenu
email={user?.email ?? ""}
imageUrl={user?.image ?? undefined}
email={user.email ?? ""}
imageUrl={user.image ?? undefined}
isLoading={isLoading}
/>
</nav>