# Powered By Footer

A compact, white-labelable assistant attribution footer with an optional privacy action.

## Installation

```bash
npx shadcn@latest add https://amro-ui.vercel.app/r/powered-by-footer.json
```

[Registry JSON](https://amro-ui.vercel.app/r/powered-by-footer.json)

## Preview

```tsx
import { PoweredByFooter } from "@amro-ui/react";

export function Preview() {
  return (
    <div className="grid min-h-72 w-full place-items-center rounded-xl border bg-background p-6 sm:p-10">
      <PoweredByFooter />
    </div>
  );
}
```


## Source

### ui/powered-by-footer.tsx

```tsx
"use client";

import "@/components/amro/amro-ui.css";

export { PoweredByFooter } from "@/components/amro/components/agents";
export type { PoweredByFooterProps } from "@/components/amro/components/agents";
```



## Usage

A compact, white-labelable assistant attribution footer with an optional privacy action.

### Package

```tsx
import { PoweredByFooter } from "@amro-ui/react";

<PoweredByFooter />
```

### shadcn copy

```tsx
import { PoweredByFooter } from "@/components/ui/powered-by-footer";

<PoweredByFooter />
```

