Components
A minimal, one-click contact component for portfolios. Hover reveals a subtle arrow hint, and clicking triggers a smooth flip animation.
Loading preview...
import { CopyEmailButton } from "@/components/ui/copy-email-button";
export default function Page() {
return (
<main className="flex min-h-screen flex-col items-center justify-center gap-10 bg-background p-8">
<div className="text-center space-y-2">
<p className="text-xs uppercase tracking-widest text-muted-foreground">Click to copy</p>
</div>
<CopyEmailButton email="hello@johndoe.com" />
<p className="text-xs text-muted-foreground/60 max-w-[200px] text-center text-pretty">
A minimal copy-to-clipboard interaction for portfolios
</p>
</main>
)
}