import { ChipLink } from '@sim/emcn' interface AuthNavPromptProps { /** Muted lead text before the link (e.g. "Don't have an account?"). */ prompt?: string href: string linkLabel: string /** Side effect to run before navigation (e.g. clearing verification state). */ onNavigate?: () => void } /** * The cross-page navigation row (Sign up / Sign in / Back to login) — an * optional muted prompt followed by an outline {@link ChipLink} pill, matching * the landing's secondary chip CTAs. Centralizes the auth nav affordance so the * pill chrome is described by props, never restyled per page. */ export function AuthNavPrompt({ prompt, href, linkLabel, onNavigate }: AuthNavPromptProps) { return (
{prompt && {prompt}} {linkLabel}
) }