docs/web-client-vite/src/components/ProjectFiles.tsx
markov 8a1aadf144 Complete BFF removal migration
- Updated Nginx config to serve static SPA from web-client-new/dist/
- All API requests now proxy directly to Tracker (port 8100)
- WebSocket connections go directly to Tracker with JWT auth
- Stopped and disabled team-board-bff and team-board-web services
- Fixed file permissions for nginx to serve static files
- Migration complete: Next.js+BFF → Vite+React+Direct-Tracker
2026-02-23 23:27:49 +01:00

17 lines
477 B
TypeScript

import type { Project } from "@/lib/api";
interface Props {
project: Project;
}
export default function ProjectFiles({ project }: Props) {
return (
<div className="flex items-center justify-center h-full text-[var(--muted)]">
<div className="text-center">
<h3 className="text-lg mb-2">📁 Project Files</h3>
<p className="text-sm">Project: {project.name}</p>
<p className="text-xs mt-1">Coming soon...</p>
</div>
</div>
);
}