// /app/profile/[steamId]/matches/page.tsx import UserMatchesList from '@/app/components/profile/[steamId]/matches/UserMatchesList' import Card from '@/app/components/Card' export default function MatchesPage({ params }: { params: { steamId: string } }) { return (

Deine Matches

) }