import Card from '@/components/ui/Card'; import type { DashboardFeedItemSummaryViewModel } from '@/lib/view-models/DashboardOverviewViewModel'; import FeedList from '@/components/feed/FeedList'; import UpcomingRacesSidebar from '@/components/races/UpcomingRacesSidebar'; import LatestResultsSidebar from '@/components/races/LatestResultsSidebar'; 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: DashboardFeedItemSummaryViewModel[]; upcomingRaces: FeedUpcomingRace[]; latestResults: FeedLatestResult[]; } export default function FeedLayout({ feedItems, upcomingRaces, latestResults }: FeedLayoutProps) { return (

Activity

See what your friends and leagues are doing right now.

); }