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 (
  • profile picture {session?.user?.username ?? "unknown"}
  • ); }