'use client'; import React from 'react'; import { TeamCard } from '@/components/teams/TeamCard'; import { routes } from '@/lib/routing/RouteConfig'; import { Box } from '@/ui/Box'; import { Heading } from '@/ui/Heading'; import { Link } from '@/ui/Link'; interface Team { id: string; name: string; description: string; logoUrl?: string; } interface TeamSummaryPanelProps { teams: Team[]; } /** * TeamSummaryPanel - Semantic section for teams. */ export function TeamSummaryPanel({ teams }: TeamSummaryPanelProps) { return ( TEAMS ON THE GRID BROWSE TEAMS → {teams.slice(0, 2).map((team) => ( ))} ); }