'use client'; import React from 'react'; import { Event, TripDataEntry } from '@/types'; import TrainSection from './TrainSection'; import BikeSection from './BikeSection'; import LeaveByBadge from './LeaveByBadge'; import { calculateCountdown } from '@/lib/countdown-utils'; type EventCardProps = { event: Event; tripData: TripDataEntry; className?: string; }; const EventCard: React.FC = ({ event, tripData, className = '', }) => { return (

{event.title}

{event.destination}

); }; export default EventCard;