File size: 1,077 Bytes
8892a6c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
export default function PlaybackControls() {
  return (
    <div className="panel-card p-4 h-full flex flex-col items-center justify-center relative overflow-hidden">
      <span className="text-[10px] font-semibold text-zinc-400 uppercase tracking-wider mb-6 z-10">
        Local Training Endpoint
      </span>

      <button
        disabled
        className="group relative flex items-center justify-center w-full max-w-[240px] py-4 rounded font-mono text-sm tracking-widest font-bold bg-zinc-800/50 text-zinc-600 border border-zinc-800 cursor-not-allowed z-10"
      >
        <span className="flex items-center gap-2">
          <svg className="w-4 h-4" viewBox="0 0 24 24" fill="currentColor">
            <path d="M8 5v14l11-7z" />
          </svg>
          DISABLED
        </span>
      </button>

      <p className="text-[10px] text-zinc-500 mt-4 text-center z-10 max-w-[260px] leading-relaxed">
        Mock training playback has been removed. This endpoint stays disabled until a real local training pipeline is wired into the app.
      </p>
    </div>
  );
}