bibekrawat2020 If you want to modify the top part of the Dashboard, you can extend the StatusWidget
component like this:
import { extend } from 'flarum/common/extend';
import StatusWidget from 'flarum/admin/components/StatusWidget';
export default function () {
extend(StatusWidget.prototype, 'items', function (items) {
items.add(...)
});
}
But as @GreXXL mentioned, it highly depends on what exactly you are trying to do, so results may differ 🙂