From mainframes to microchips
U
From mainframes to microchips
unsplash.com
import { Image } from "@/components/tool-ui/image";export function Example() { return ( <Image id="image-example" assetId="vintage-mainframe" src="https://images.unsplash.com/photo-1504548840739-580b10ae7715" alt="Vintage mainframe with blinking lights" title="From mainframes to microchips" description="A snapshot of when rooms were computers." ratio="4:3" domain="unsplash.com" /> );}Title and source attribution appear on hover
Click-through to source with icon and domain
Support for 1:1, 4:3, 16:9, 9:16, or auto
Copy components/tool-ui/image and the shared directory into your project.
pnpm dlx shadcn@latest add badge button card tooltipProp
Type
pnpm dlx shadcn@latest add badge button card tooltipimport { Image } from "@/components/tool-ui/image";
export function Example() {
return (
<Image
id="image-example"
assetId="vintage-mainframe"
src="https://images.unsplash.com/photo-1504548840739-580b10ae7715"
alt="Vintage mainframe with blinking lights"
title="From mainframes to microchips"
description="A snapshot of when rooms were computers."
ratio="4:3"
domain="unsplash.com"
/>
);
}