An animated AI web-search state that streams a query, discovers source links one by one with a spinning globe, then marks each result done with a check.
import { WebSearch } from "@/components/ui/web-search"; export default function Default() { return ( <div className="flex min-h-[260px] w-full items-center justify-center p-8"> <div className="w-full max-w-md"> <WebSearch /> </div> </div> ); }