// modules/vibecoder/src/surfaces/VibeCoderHomeSurface.tsx // // VibeCoderHomeSurface — the centre of the VibeCoder workspace. // Hosts the EditorVibeCard (3-pane editor) wrapped in the providers // the editor needs (VibeCoderProjectProvider, EditorBufferProvider, // InspectorProvider, PeekProvider, ErrorSurfaceProvider). // // Standalone-only path. FVS mounts the EditorVibeCard directly under // its centre-stage + chrome; here the centre surface IS the home. import * as React from 'react'; import { EditorVibeCard } from '../cards/EditorVibeCard'; export function VibeCoderHomeSurface(): React.ReactElement { return (
); }