Click to copy component - a minimal copy-to-clipboard interaction for portfolios
import { CopyEmailButton } from "@/components/ui/copy-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> ); }