"use client";

import { signOut } from "next-auth/react";
import { ThemeToggle } from "./theme-toggle";

export function AdminActions() {
  return (
    <div className="flex items-center gap-2">
      <ThemeToggle />
      <button className="brand-button" onClick={() => void signOut({ callbackUrl: "/login" })} type="button">
        Logout
      </button>
    </div>
  );
}
