File size: 590 Bytes
1067b6f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | "use client";
import { UserButton } from "@clerk/nextjs";
export const UserProfileWrapper = () => {
return (
<div className="px-6 py-6 rounded-md bg-secondary flex items-start flex-col border border-border">
<p className="font-medium">Manage Account</p>
<p className="text-sm text-muted-foreground">
Click on your profile to manage your account.
</p>
<div className="mt-4">
<UserButton />
{/* {user.isLoaded ? (
) : (
<div className="h-8 w-8 bg-primary rounded-full" />
)} */}
</div>
</div>
);
};
|