"use client"; import { Dock, DockIcon } from "@/components/ui/dock"; import { signOut } from "next-auth/react"; import { Home, User, LogOut, Download, BookOpen, LayoutDashboard } from "lucide-react"; export function HomeDock({ isAuthenticated, onLoginClick, }: { isAuthenticated: boolean; onLoginClick?: () => void; }) { return (
{isAuthenticated && ( )} {isAuthenticated ? ( ) : ( )}
); }