async function loadDashboard(userId) { const user = await fetchUser(userId); const orders = await fetchOrders(userId); const notifications = await fetchNotifications(userId); return { user, orders, notifications }; }