|
@@ -22,6 +22,7 @@ export class EventCard extends React.Component {
|
|
|
<div className="container-wrap">
|
|
|
<h2>{event.title}</h2>
|
|
|
<p className="country">{event.country}, {event.city}</p>
|
|
|
+ <p className="event-type">{event.eventType}</p>
|
|
|
<div className="date">
|
|
|
<p>
|
|
|
{
|
|
@@ -31,9 +32,31 @@ export class EventCard extends React.Component {
|
|
|
}
|
|
|
</p>
|
|
|
</div>
|
|
|
+ <div>
|
|
|
+ <button>Register</button>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- </div>
|
|
|
+ </div>
|
|
|
+ <div className="container-wrap">
|
|
|
+ <div className="event-card-info">
|
|
|
+ <p>{event.ageLimit}</p>
|
|
|
+ <p>{event.aidStations}</p>
|
|
|
+ <p>{event.awardMedals}</p>
|
|
|
+ <p>{event.equipmentStorage}</p>
|
|
|
+ <p>{event.halfmarathoneDistancePrice}</p>
|
|
|
+ <p>{event.marathoneDistancePrice}</p>
|
|
|
+ <p>{event.maximumTime}</p>
|
|
|
+ <p>{event.overview}</p>
|
|
|
+ <p>{event.parking}</p>
|
|
|
+ <p>{event.refreshments}</p>
|
|
|
+
|
|
|
+ {/*{event.contentVideo}
|
|
|
+ {event.mainBannerPicture}
|
|
|
+ {event.map}
|
|
|
+ */}
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</>
|
|
|
)
|