"use client"; import { useRouter } from "next/navigation"; import { t, type Locale } from "@/lib/i18n"; export default function LogoutButton({ locale }: { locale: Locale }) { const router = useRouter(); async function handleLogout() { await fetch("/api/auth/logout", { method: "POST" }); router.push("/login"); } return ( ); }