|
|
|
@ -66,7 +66,7 @@ export default function Term(props: Props) { |
|
|
|
|
</div> |
|
|
|
|
{hasFutureEvents && ( |
|
|
|
|
<> |
|
|
|
|
<h2>Upcoming Events</h2> |
|
|
|
|
<h1>Upcoming Events</h1> |
|
|
|
|
<div className={styles.miniEventCards}> |
|
|
|
|
{props.futureEvents.map(({ content, metadata }) => ( |
|
|
|
|
<EventCard |
|
|
|
@ -83,16 +83,16 @@ export default function Term(props: Props) { |
|
|
|
|
)} |
|
|
|
|
{hasPastEvents && props.isCurrentTerm && <h2>Past Events</h2>} |
|
|
|
|
{hasPastEvents && !props.isCurrentTerm && ( |
|
|
|
|
<h2> |
|
|
|
|
<h1> |
|
|
|
|
Events Archive: |
|
|
|
|
<span className={styles.blue}> |
|
|
|
|
{` ${capitalize(props.term)} ${props.year}`} |
|
|
|
|
</span> |
|
|
|
|
</h2> |
|
|
|
|
</h1> |
|
|
|
|
)} |
|
|
|
|
{!hasFutureEvents && !hasPastEvents && ( |
|
|
|
|
<> |
|
|
|
|
<h2>Events</h2> |
|
|
|
|
<h1>Events</h1> |
|
|
|
|
There are no upcoming or past events for the{" "} |
|
|
|
|
{`${capitalize(props.term)} ${props.year}`} term. Please check back |
|
|
|
|
later! |
|
|
|
|