/* global React, useToast, Icon */ // Top-level prototype chrome: surface switcher + keyboard nav. // Small floating dock so you can jump between marketing / clipper / admin. const { useState: useStateChrome, useEffect: useEffectChrome } = React; function SurfaceDock({ surface, setSurface, hidden }){ if (hidden) return null; const surfaces = [ {id:"marketing", label:"Marketing", icon:"home"}, {id:"clipper", label:"Clipper", icon:"wallet"}, {id:"admin", label:"Admin", icon:"settings"}, ]; return (
PREVIEW
{surfaces.map(s => ( ))}
); } window.SurfaceDock = SurfaceDock;