A compact CRM-style data table with colored tag chips, a sticky first column, row selection, sortable columns, connection-strength indicators, and a calculations footer.
import RecordsTable from "@/components/ui/records-table"; export default function Default() { return ( <div className="flex w-full justify-center p-6"> <div className="w-full max-w-5xl"> <RecordsTable /> </div> </div> ); }