diff --git a/src/components/pages/home/sponsors/sponsors.jsx b/src/components/pages/home/sponsors/sponsors.jsx index baa5692..487ba93 100644 --- a/src/components/pages/home/sponsors/sponsors.jsx +++ b/src/components/pages/home/sponsors/sponsors.jsx @@ -49,7 +49,7 @@ const ITEMS = [ title: 'Platinum Sponsors', logos: [ { icon: ContainByNetic, url: 'https://contain.dk/', scale: '75%' }, - { icon: TeamBlue, url: 'https://team.blue/', scale: '65%' }, + { icon: TeamBlue, url: 'https://www.scannet.dk/', scale: '65%' }, ], cardClassname: 'min-w-[488px] max-w-[330px] min-h-[152px] sm:min-w-[350px] sm:min-h-[130px] xs:min-w-fit xs:max-w-full', diff --git a/src/components/pages/schedule/schedule/schedule.jsx b/src/components/pages/schedule/schedule/schedule.jsx index 4bd96bc..a8ae67a 100644 --- a/src/components/pages/schedule/schedule/schedule.jsx +++ b/src/components/pages/schedule/schedule/schedule.jsx @@ -133,11 +133,15 @@ const Schedule = ({ location }) => { > {session.title} - ) : ( + ) : (session.title != 'Afterparty' && {session.title} )} + {session.title == 'Afterparty' && ( + + Afterparty @ Proud Mary, Vesterbrogade 2A, Copenhagen + )} {session.isPlenumSession && (!!!session.isServiceSession) && calcDuration(session.startsAt, session.endsAt) > 10 && ( Keynote @@ -173,17 +177,26 @@ const Schedule = ({ location }) => { {calcDuration(session.startsAt, session.endsAt)} min - {name && ( + {session.title!='Afterparty' && name && ( {name} )} + {session.title == 'Afterparty' && ( + + Afterparty + + )} + ) )}