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

# <SignedOut />

The `<SignedOut>` component allows you to show content only when the user is not authenticated.

### Props

<ParamField path="children" type="ReactNode">
  The content to show when the user is signed out.
</ParamField>

### Examples

```tsx theme={null}
import { SignedOut } from "@kobbleio/next/client";

export default function Home() {
    return (
        <SignedOut>
            <span>Your're not authenticated</span>
        </SignedOut>
    );
}
```

It can be used in combination with the `<SignedIn />` component to show different content based on the user's authentication status.]]### Props

```tsx theme={null}
import { SignedIn, SignedOut } from "@kobbleio/next/client";

export default function Home() {
    return (
        <>
            <SignedIn>
                <span>Your're authenticated</span>
            </SignedIn>
            <SignedOut>
                <span>Your're not authenticated</span>
            </SignedOut>
        </>
    );
}
```
