super basic account page with link on Index page

This commit is contained in:
Oliver Bryan
2025-12-27 05:37:58 +00:00
parent f04b8e05c9
commit fb1a7e90d6
4 changed files with 51 additions and 12 deletions

View File

@@ -4,7 +4,7 @@ import Avatar from "@/components/avatar";
export default function SmallUserDisplay({ user }: { user: UserRecord }) {
return (
<div className="flex gap-2 items-center">
{user.name} <Avatar user={user} />
{user.name} <Avatar user={user} size={6} />
</div>
);
}