# Soft Blur In

Characters fade in through a soft blur and upward drift, staggered one frame apart.

> For the complete documentation index, see [llms.txt](/llms.txt). Markdown variants are available by appending `.md` to any URL or sending an `Accept: text/markdown` header. An agent skill is available at [/.well-known/agent-skills/site-skill.md](/.well-known/agent-skills/site-skill.md).

## Installation

<TabsTrigger value="cli">Command</TabsTrigger>
<TabsTrigger value="manual">Manual</TabsTrigger>

```bash
npx shadcn@latest add @framecn/soft-blur-in
```

<Step>Copy and paste the following code into your project.</Step>

<Step>Update the import paths to match your project setup.</Step>

## Usage

```tsx
import { SoftBlurIn } from "@/components/framecn/soft-blur-in";
```

```tsx
<SoftBlurIn text="Soft blur letters" />
```

## API Reference

### SoftBlurIn

| Prop               | Type     | Default               |
| ------------------ | -------- | --------------------- |
| `text`             | `string` | `"Soft blur letters"` |
| `blur`             | `number` | `12`                  |
| `fontSize`         | `number` | `72`                  |
| `color`            | `string` | `"#171717"`           |
| `fontWeight`       | `number` | `600`                 |
| `speed`            | `number` | `1`                   |
| `fps`              | `number` | `30`                  |
| `durationInFrames` | `number` | `90`                  |
| `className`        | `string` | `-`                   |

## Notes

  The `blur` prop directly controls the starting blur amount. Each blur value
  generates a uniquely named keyframe, so multiple instances with different blur
  values can coexist on the same page without conflict.