import { Box, Button, Card, CardContent, Typography } from '@mui/material' import type { StrongMatchItem } from '../../domain/dashboard' import { StrongMatchMiniCard } from './StrongMatchMiniCard' interface StrongMatchOverviewProps { matches: StrongMatchItem[] onNavigate: () => void } export function StrongMatchOverview({ matches, onNavigate }: StrongMatchOverviewProps) { return ( Starke Matches {matches.length === 0 ? ( Keine starken Matches vorhanden. ) : ( matches.slice(0, 5).map(m => ( )) )} ) }