import Card from '@/components/ui/Card'; import FeedList from '@/components/feed/FeedList'; import UpcomingRacesSidebar from '@/components/races/UpcomingRacesSidebar'; import LatestResultsSidebar from '@/components/races/LatestResultsSidebar'; interface FeedItemData { id: string; type: string; headline: string; body?: string; timestamp: string; formattedTime: string; ctaHref?: string; ctaLabel?: string; } type FeedUpcomingRace = { id: string; track: string; car: string; scheduledAt: string | Date; }; type FeedLatestResult = { raceId: string; track: string; car: string; winnerName: string; scheduledAt: string | Date; }; interface FeedLayoutProps { feedItems: FeedItemData[]; upcomingRaces: FeedUpcomingRace[]; latestResults: FeedLatestResult[]; } export default function FeedLayout({ feedItems, upcomingRaces, latestResults }: FeedLayoutProps) { return (

Activity

See what your friends and leagues are doing right now.

); }