import Link from "next/link"; import { CircleQuestionMark, List, Plus, UserRound, UserRoundMinus } from "lucide-react"; import { logOut } from "@/app/actions"; import { getAuth } from "@/lib/auth"; import HeaderButton from "./ui/HeaderButton"; export default async function Header() { const auth = await getAuth(); return (
{auth && (
} /> } />
)}
} /> {auth ? ( } /> ) : ( } /> )}
); }