"use client"; import { Menu } from "@headlessui/react"; import { signOut } from "next-auth/react"; import Link from "next/link"; import Image from "next/image"; function ProfileDropDown({ userImage }: { userImage: string }) { return (
); } export default ProfileDropDown;