Iphone
A mockup of the iPhone
Installation
Examples
With Content
import { Iphone } from "@/components/vritti/iphone";
export function IphoneWithContentExample() {
return (
<div className="w-full max-w-[434px]">
<Iphone>
<div className="flex h-full flex-col items-center justify-center bg-gradient-to-b from-violet-500 to-purple-700 p-8 text-white">
<h2 className="text-2xl font-bold">Welcome</h2>
<p className="mt-2 text-center text-sm opacity-80">
Your app content goes here
</p>
</div>
</Iphone>
</div>
);
}
Props
Iphone
| Prop | Type | Default | Description |
|---|---|---|---|
src | string | - | Image source URL to display on the phone screen |
videoSrc | string | - | Video source URL to display on the phone screen |
className | string | - | Additional CSS classes for the container |
style | React.CSSProperties | - | Custom inline styles for the container |