'use client';

import { signOut } from 'next-auth/react';

export function SignOutButton() {
  return (
    <button
      onClick={() => signOut({ callbackUrl: '/' })}
      style={{
        background: 'transparent',
        border: '1px solid rgba(226, 232, 240, 0.5)',
        color: '#e2e8f0',
        padding: '0.5rem 1rem',
        borderRadius: '9999px',
        fontSize: '0.95rem'
      }}
    >
      Sign out
    </button>
  );
}
