# Product Preview Frame

A browser-like frame for credible application previews with optional tools and fullscreen handling.

## Installation

```bash
npx shadcn@latest add https://amro-ui.vercel.app/r/product-preview-frame.json
```

[Registry JSON](https://amro-ui.vercel.app/r/product-preview-frame.json)

## Preview

```tsx
import { ProductPreviewFrame } 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">
      <ProductPreviewFrame />
    </div>
  );
}
```


## Source

### ui/product-preview-frame.tsx

```tsx
"use client";

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

export { ProductPreviewFrame } from "@/components/amro/components/shared";
export type { ProductPreviewFrameProps } from "@/components/amro/components/shared";
```



## Usage

A browser-like frame for credible application previews with optional tools and fullscreen handling.

### Package

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

<ProductPreviewFrame />
```

### shadcn copy

```tsx
import { ProductPreviewFrame } from "@/components/ui/product-preview-frame";

<ProductPreviewFrame />
```

