Prose text with inline numbered citation chips that link to sources, reveal the reference name on hover, and list all references in a footer.
import { InlineCitations } from "@/components/ui/inline-citations"; export default function Default() { return ( <div className="flex min-h-[320px] w-full items-center justify-center p-8"> <div className="w-full max-w-md"> <InlineCitations /> </div> </div> ); }