import { Card } from '@/ui/Card'; import { FeedList } from '@/ui/FeedList'; import { UpcomingRacesSidebar } from '@/ui/UpcomingRacesSidebar'; import { LatestResultsSidebar } from '@/ui/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 function FeedLayout({ feedItems, upcomingRaces, latestResults }: FeedLayoutProps) { return (

Activity

See what your friends and leagues are doing right now.

); }