website cleanup

This commit is contained in:
2025-12-24 21:44:58 +01:00
parent 9b683a59d3
commit d78854a4c6
277 changed files with 6141 additions and 2693 deletions

View File

@@ -17,6 +17,8 @@ import {
Languages,
} from 'lucide-react';
import { useServices } from '@/lib/services/ServiceProvider';
interface TeamCardProps {
id: string;
name: string;
@@ -77,8 +79,8 @@ export default function TeamCard({
languages,
onClick,
}: TeamCardProps) {
const imageService = getImageService();
const logoUrl = logo || imageService.getTeamLogo(id);
const { mediaService } = useServices();
const logoUrl = logo || mediaService.getTeamLogo(id);
const performanceBadge = getPerformanceBadge(performanceLevel);
const specializationBadge = getSpecializationBadge(specialization);
@@ -206,4 +208,4 @@ export default function TeamCard({
</div>
</div>
);
}
}