/** * @file SignOutButton.tsx * @description Server Action-powered client component rendering a sign-out button that triggers session termination via a server action. */ import { handleSignOut } from "@/auth"; import { LogOut } from "lucide-react"; /** * Renders a form containing a submit button to securely sign out the current user session using a server action. * * @returns {JSX.Element} The rendered sign-out button component. */ export default function SignOutButton() { return (
); }