/** * Dashboard Overview Demo * Shows the main dashboard layout with widgets */ import React from 'react' export default function DashboardOverview() { return (
{/* Header */}

Dashboard

Project overview and activity monitoring

{/* Workflow Stats Widget */}

Project Overview & Statistics

Statistics
{[ { label: 'Active Sessions', value: '12', color: 'text-blue-500' }, { label: 'Total Tasks', value: '48', color: 'text-green-500' }, { label: 'Completed', value: '35', color: 'text-emerald-500' }, { label: 'Pending', value: '8', color: 'text-amber-500' }, ].map((stat, i) => (
{stat.value}
{stat.label}
))}
Workflow Status
70%
Completed: 70%
Recent Session
Feature: Auth Flow Running
Implement login
Add OAuth
Test flow
{/* Recent Sessions Widget */}
{['All Tasks', 'Workflow', 'Lite Tasks'].map((tab, i) => ( ))}
{[ { name: 'Refactor UI Components', status: 'In Progress', progress: 65 }, { name: 'Fix Login Bug', status: 'Pending', progress: 0 }, { name: 'Add Dark Mode', status: 'Completed', progress: 100 }, ].map((task, i) => (
{task.name} {task.status}
{task.progress > 0 && task.progress < 100 && (
)}
))}
) }