import React from 'react'; import { User } from '../../types'; import StatusGrid from './components/StatusGrid'; interface WorkspaceViewProps { user: User | null; } /** * WorkspaceView is a 'Dumb' component: * - It only receives data via props. * - It defines the visual layout and style. */ const WorkspaceView: React.FC = ({ user }) => { return (

Workspace Ready

The HumanizeIQ shared framework is initialized. Your authentication context and AI connection layer are fully wired up.

); }; export default WorkspaceView;