diff --git a/packages/client/components/MeetingsDash.tsx b/packages/client/components/MeetingsDash.tsx
index 7faf932e1b6..bffee6c9a76 100644
--- a/packages/client/components/MeetingsDash.tsx
+++ b/packages/client/components/MeetingsDash.tsx
@@ -137,6 +137,7 @@ const MeetingsDash = (props: Props) => {
{!teamFilterIds ? (
+
diff --git a/packages/client/components/TutorialMeetingCard.tsx b/packages/client/components/TutorialMeetingCard.tsx
index 543a9eb1f6a..da38f967417 100644
--- a/packages/client/components/TutorialMeetingCard.tsx
+++ b/packages/client/components/TutorialMeetingCard.tsx
@@ -2,6 +2,7 @@ import styled from '@emotion/styled'
import React, {useCallback} from 'react'
import SendClientSideEvent from '~/utils/SendClientSideEvent'
import pokerTutorialThumb from '../../../static/images/illustrations/pokerTutorialThumb.jpg'
+import retroTutorialThumb from '../../../static/images/illustrations/retroTutorialThumb.png'
import standupTutorialThumb from '../../../static/images/illustrations/standupTutorialThumb.jpg'
import useAtmosphere from '../hooks/useAtmosphere'
import useBreakpoint from '../hooks/useBreakpoint'
@@ -100,14 +101,19 @@ const TopLine = styled('div')({
})
interface Props {
- type: 'poker' | 'standup'
+ type: 'retro' | 'poker' | 'standup'
}
const TUTORIAL_MAP = {
+ retro: {
+ label: 'Starting a Retrospective Meeting',
+ thumbnail: retroTutorialThumb,
+ url: 'https://www.youtube.com/embed/C96fNtypaww?modestbranding=1&rel=0'
+ },
poker: {
label: 'Starting a Sprint Poker Meeting',
thumbnail: pokerTutorialThumb,
- url: 'https://www.youtube.com/embed/X_i60AMxPBU?modestbranding=1&rel=0'
+ url: 'https://www.youtube.com/embed/RJGnNXvvShY?modestbranding=1&rel=0'
},
standup: {
label: 'Starting a Standup Meeting',
diff --git a/packages/client/modules/teamDashboard/components/TeamDashActivityTab/TeamDashActivityTab.tsx b/packages/client/modules/teamDashboard/components/TeamDashActivityTab/TeamDashActivityTab.tsx
index 1698bc099a5..5a09a122b4c 100644
--- a/packages/client/modules/teamDashboard/components/TeamDashActivityTab/TeamDashActivityTab.tsx
+++ b/packages/client/modules/teamDashboard/components/TeamDashActivityTab/TeamDashActivityTab.tsx
@@ -65,6 +65,7 @@ const TeamDashActivityTab = (props: Props) => {
) : (
<>
+
>
diff --git a/static/images/illustrations/pokerTutorialThumb.jpg b/static/images/illustrations/pokerTutorialThumb.jpg
index 9bdf0230665..e10236a1417 100644
Binary files a/static/images/illustrations/pokerTutorialThumb.jpg and b/static/images/illustrations/pokerTutorialThumb.jpg differ
diff --git a/static/images/illustrations/retroTutorialThumb.png b/static/images/illustrations/retroTutorialThumb.png
new file mode 100644
index 00000000000..560c16a1e8d
Binary files /dev/null and b/static/images/illustrations/retroTutorialThumb.png differ
diff --git a/static/images/illustrations/standupTutorialThumb.jpg b/static/images/illustrations/standupTutorialThumb.jpg
index 62c0f87467c..cd96d52cec0 100644
Binary files a/static/images/illustrations/standupTutorialThumb.jpg and b/static/images/illustrations/standupTutorialThumb.jpg differ