Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions web-server/pages/integrations.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,19 @@ const Content = () => {
const teamCount = teams.length;
return (
<FlexBox col gap2>
<Line white fontSize={'24px'}>
Integrate your Github to fetch DORA for your team
</Line>
<FlexBox justifyBetween>
<Line white fontSize={'24px'}>
Integrate your Github to fetch DORA for your team
</Line>
{Boolean(teamCount) && (
<Button href={ROUTES.DORA_METRICS.PATH} variant="contained">
<FlexBox centered fullWidth p={2 / 3}>
Continue to Dora {'->'}
</FlexBox>
</Button>
)}
</FlexBox>

<Divider sx={{ mb: '20px' }} />
<FlexBox>
<GithubIntegrationCard />
Expand Down