mirror of
https://github.com/trafficlunar/tomodachi-share.git
synced 2026-03-28 19:23:15 +00:00
27 lines
775 B
TypeScript
27 lines
775 B
TypeScript
import Image from "next/image";
|
|
import { auth } from "@/lib/auth";
|
|
import Link from "next/link";
|
|
|
|
export default async function ProfileOverview() {
|
|
const session = await auth();
|
|
|
|
return (
|
|
<li title="Your profile">
|
|
<Link
|
|
href={`/profile/${session?.user.id}`}
|
|
aria-label="Go to profile"
|
|
className="pill button gap-2! p-0! h-full max-w-64"
|
|
data-tooltip="Your Profile"
|
|
>
|
|
<Image
|
|
src={session?.user?.image ?? "/guest.webp"}
|
|
alt="profile picture"
|
|
width={40}
|
|
height={40}
|
|
className="rounded-full aspect-square object-cover h-full bg-white outline-2 outline-orange-400"
|
|
/>
|
|
<span className="pr-4 overflow-hidden whitespace-nowrap text-ellipsis w-full">{session?.user?.username ?? "unknown"}</span>
|
|
</Link>
|
|
</li>
|
|
);
|
|
}
|