HoverCard
A hovercard is a small overlay that appears when you hover over a link or other element. HoverCards are used to provide additional information about an element without having to navigate to a new page.
'use client'import { HoverCard, HoverCardTrigger, HoverCardContent } from '@nerdfish/ui'export function HoverCardExample() {return (<HoverCard><HoverCardTrigger>Hover over the cake</HoverCardTrigger><HoverCardContent><div className="space-y-2"><h4 className="text-sm font-semibold">@darenmalfait</h4><p className="text-sm">The ultimate cake making guide โ created and maintained by@darenmalfait.</p></div></HoverCardContent></HoverCard>)}
Usage
import { HoverCard, HoverCardTrigger, HoverCardContent } from '@nerdfish/ui'
<HoverCard><HoverCardTrigger>Hover over the cake</HoverCardTrigger><HoverCardContent><div className="space-y-2"><h4 className="text-sm font-semibold">@darenmalfait</h4><p className="text-sm">The ultimate cake making guide โ created and maintained by@darenmalfait.</p></div></HoverCardContent></HoverCard>