Docs
Mac Screen
Classic Mac frame with an image or GIF composited into the CRT


Pro workflow
Open in v0 and the Pro CLI install shortcut are part of Cult UI Pro. Upgrade to use them in your projects.
Get ProSource code is available for Pro members.
Upgrade to copy and use these components in your projects.
View pricingAdd the frame asset to your app’s public folder at
public/component-frames/apple-computer-img.png (or change the src in the
component to match your file).
MacScreen is a client component. Pass gifUrl for any image URL (not only GIFs) to show inside the bezel, and alt for accessible text for that inner image.
import { MacScreen } from "@/components/mac-screen";
export function Hero() {
return (
<MacScreen
gifUrl="https://example.com/preview.png"
alt="Product screenshot"
/>
);
}