> ## Documentation Index
> Fetch the complete documentation index at: https://docs.younegotiate.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Coming Soon Tools

> Jane opens the avatar menu and sees future tools such as My Donation Profile, Invite & Earn, Bill Pay Rewards, and Credit Score & Boost.

## Real-World Example

Jane opens the avatar menu and sees future tools such as My Donation Profile, Invite & Earn, Bill Pay Rewards, and Credit Score & Boost. These should appear as unavailable future items until the product team enables a real workflow.

## Visual Flow

```mermaid placement="top-right" actions={true} theme={"system"}
flowchart TD
    A["Consumer opens avatar menu"] --> B["Portal shows coming soon tools"]
    B --> C{"Feature implemented and approved?"}
    C -->|No| D["Tool remains disabled"]
    C -->|Yes| E["Feature gets its own route and docs page"]
    classDef default fill:#F8FAFC,stroke:#64748B,stroke-width:1.5px,color:#0F172A;
    classDef actor fill:#E0F2FE,stroke:#0284C7,stroke-width:2px,color:#0C4A6E;
    classDef system fill:#F8FAFC,stroke:#64748B,stroke-width:1.5px,color:#0F172A;
    classDef decision fill:#FEF3C7,stroke:#D97706,stroke-width:2px,color:#78350F;
    classDef risk fill:#FEE2E2,stroke:#DC2626,stroke-width:2px,color:#7F1D1D;
    classDef outcome fill:#DCFCE7,stroke:#16A34A,stroke-width:2px,color:#14532D;
    class A actor;
    class B,D,E system;
    class C decision;
    class D risk;
    class E outcome;
    linkStyle default stroke:#94A3B8,stroke-width:2px;
```

## How It Should Work

* It should show future tools only as coming soon items until the workflow exists.
* It should avoid creating clickable dead ends.
* It should get a dedicated page, route, and behavior contract when each feature is built.

## How It Should Not Work

* It should not silently enable unfinished features.
* It should not collect consumer data for future tools before the intended flow exists.
* It should not make coming soon items look like active payment or account actions.

## Developer Notes

* Current coming soon items are visible from the consumer avatar popover.
* When one becomes active, remove it from this placeholder page and create a real feature page.

## Related App Areas

* `resources/views/components/consumer/header.blade.php`
* `resources/views/components/consumer/menu/coming-soon.blade.php`
