/** * AuthGate - Sign-in prompt for unauthenticated users. * Replaces interactive elements (composer, new topic button). */ import Link from 'next/link' import { SignIn } from '@phosphor-icons/react/dist/ssr' import { cn } from '@/lib/utils' interface AuthGateProps { message: string className?: string } export function AuthGate({ message, className }: AuthGateProps) { return (

{message}

) }