Autosave: 20260502-191404
This commit is contained in:
parent
a00b35438b
commit
677de2a77b
@ -13,6 +13,12 @@ const menuAside: MenuAsideItem[] = [
|
||||
label: 'Legacy Launchpad',
|
||||
permissions: 'CREATE_PROJECTS',
|
||||
},
|
||||
{
|
||||
href: '/business-command-center',
|
||||
icon: icon.mdiViewDashboardOutline,
|
||||
label: 'Command center',
|
||||
permissions: 'READ_PROJECTS',
|
||||
},
|
||||
|
||||
{
|
||||
href: '/users/users-list',
|
||||
|
||||
5195
frontend/src/pages/business-command-center.tsx
Normal file
5195
frontend/src/pages/business-command-center.tsx
Normal file
File diff suppressed because it is too large
Load Diff
@ -154,6 +154,39 @@ const Dashboard = () => {
|
||||
</div>
|
||||
</CardBox>
|
||||
)}
|
||||
|
||||
{!showLaunchpadStarter && hasPermission(currentUser, 'READ_PROJECTS') && (
|
||||
<CardBox className="mb-6 border border-sky-200 bg-gradient-to-br from-sky-50 via-white to-emerald-50 dark:border-dark-700 dark:from-dark-900 dark:via-dark-900 dark:to-dark-800">
|
||||
<div className="flex flex-col gap-4 lg:flex-row lg:items-center lg:justify-between">
|
||||
<div>
|
||||
<p className="text-xs font-semibold uppercase tracking-[0.2em] text-sky-700 dark:text-sky-300">
|
||||
New main workspace
|
||||
</p>
|
||||
<h2 className="mt-2 text-2xl font-semibold tracking-tight text-slate-950 dark:text-white">
|
||||
Run your business from the new Command Center
|
||||
</h2>
|
||||
<p className="mt-2 max-w-3xl text-sm leading-6 text-slate-600 dark:text-slate-300">
|
||||
It automatically centers on your latest saved project and shows current stage, blockers, compliance items, funding signals, and next best actions in one place.
|
||||
</p>
|
||||
</div>
|
||||
<div className="flex flex-col gap-3 sm:flex-row sm:items-center">
|
||||
<BaseButton
|
||||
href="/business-command-center"
|
||||
color="info"
|
||||
icon={icon.mdiViewDashboardOutline}
|
||||
label="Open Command Center"
|
||||
/>
|
||||
<BaseButton
|
||||
href="/projects/projects-list"
|
||||
color="whiteDark"
|
||||
outline
|
||||
icon={icon.mdiBriefcaseOutline}
|
||||
label="Project library"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</CardBox>
|
||||
)}
|
||||
|
||||
{hasPermission(currentUser, 'CREATE_ROLES') && <WidgetCreator
|
||||
currentUser={currentUser}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user