A card-based activity feed that mixes comments and system events with avatars, timestamps, and an inline reply input.
import { CommentThread3 } from "@/components/ui/comment-thread-3"; export default function Default() { return ( <div className="flex min-h-svh w-full items-center justify-center bg-background p-6"> <div className="w-full max-w-md"> <CommentThread3 /> </div> </div> ); }