# Logo Enter

A row or column of overlapping logo circles that spring in one by one.

> 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/logo-enter
```

<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 { LogoEnter } from "@/components/framecn/logo-enter";
```

```tsx
<LogoEnter />
```

## API Reference

### LogoEnter

| Prop               | Type                         | Default        |
| ------------------ | ---------------------------- | -------------- |
| `diameter`         | `number`                     | `118`          |
| `overlap`          | `number`                     | `38`           |
| `ringColor`        | `string`                     | `"#ffffff"`    |
| `orientation`      | `"horizontal" \| "vertical"` | `"horizontal"` |
| `stagger`          | `number`                     | `7`            |
| `background`       | `string`                     | `"#0a0a0a"`    |
| `speed`            | `number`                     | `1`            |
| `fps`              | `number`                     | `30`           |
| `durationInFrames` | `number`                     | `90`           |
| `width`            | `number`                     | `1280`         |
| `height`           | `number`                     | `720`          |
| `className`        | `string`                     | `-`            |

## Notes

  Each logo circle uses a `cubic-bezier(0.34, 1.56, 0.64, 1)` spring curve that
  produces a natural overshoot before settling. Increase `stagger` to widen the
  delay between each logo's entrance.