'use client'; import React from 'react'; import { LeagueCard } from '@/components/leagues/LeagueCard'; import { routes } from '@/lib/routing/RouteConfig'; import { Box } from '@/ui/Box'; import { Heading } from '@/ui/Heading'; import { Link } from '@/ui/Link'; interface League { id: string; name: string; description: string; } interface LeagueSummaryPanelProps { leagues: League[]; } /** * LeagueSummaryPanel - Semantic section for featured leagues. */ export function LeagueSummaryPanel({ leagues }: LeagueSummaryPanelProps) { return ( FEATURED LEAGUES VIEW ALL → {leagues.slice(0, 2).map((league) => ( ))} ); }