diff --git a/components/sessions/FilterSessions.tsx b/components/sessions/FilterSessions.tsx index 04ba428..1c565b7 100644 --- a/components/sessions/FilterSessions.tsx +++ b/components/sessions/FilterSessions.tsx @@ -81,28 +81,32 @@ export const FilterSessions: NextPage = ({ > {sessions[0]} - - + {sessions[1] && ( + + )} + {sessions[2] && ( + + )} ))} diff --git a/components/sessions/SessionGridCard.tsx b/components/sessions/SessionGridCard.tsx index 0009eb8..74be949 100644 --- a/components/sessions/SessionGridCard.tsx +++ b/components/sessions/SessionGridCard.tsx @@ -61,6 +61,20 @@ export const SessionGridCard = ({ ))} + {!schedule.is_serviceSession && ( +

+ + # + {schedule.is_keynote + ? 'Keynote' + : schedule.session_level} + + | {' '} + + {schedule.session_format} + {' '} +

+ )} {schedule.is_serviceSession ? (

{schedule.is_keynote ? 'Keynote: ' : ''}{' '} diff --git a/components/sessions/SessionListCard.tsx b/components/sessions/SessionListCard.tsx index 7e327e6..7befd57 100644 --- a/components/sessions/SessionListCard.tsx +++ b/components/sessions/SessionListCard.tsx @@ -62,6 +62,20 @@ const SessionListCard = ({ {truncateString(schedule.description, 150)}

)} + {!schedule.is_serviceSession && ( +

+ + # + {schedule.is_keynote + ? 'Keynote' + : schedule.session_level} + + | {' '} + + {schedule.session_format} + {' '} +

+ )}

{hour(schedule.start_date_time)} -{' '} @@ -74,7 +88,6 @@ const SessionListCard = ({ ))}

- {!schedule.is_serviceSession} {schedule.speakers?.map((speaker) => (