Skip to content

Commit ed7e9d8

Browse files
committed
add restart button to eli overview
1 parent 8d2fa67 commit ed7e9d8

1 file changed

Lines changed: 11 additions & 3 deletions

File tree

src/ui/screens/eligibilty-overview/components/EligibilityOverviewHeader.js

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
22
import { Typography } from '@mui/material';
3-
import { VBox } from "@/ui/shared-components/LayoutBoxes";
3+
import { HBox, VBox } from "@/ui/shared-components/LayoutBoxes";
44
import useTranslation from "@/ui/language/useTranslation";
55
import RegularButton from '@/ui/shared-components/buttons/RegularButton';
66

@@ -13,19 +13,27 @@ const EligibilityOverviewHeader = () => {
1313
<Typography variant="h1">
1414
{t('app.browseAll.header')}
1515
</Typography>
16-
<RegularButton
16+
<HBox sx={{ alignItems: 'center' }}>
17+
<RegularButton
1718
variant={'blueHollow'}
1819
text={'app.browseAll.profileBtn'}
1920
link={'/profile-overview'}
2021
size='small'
2122
/>
23+
<RegularButton
24+
variant='greyContained'
25+
text={'app.qsComplete.restartBtn'}
26+
link={'/user-routing'}
27+
size='small'
28+
/>
29+
</HBox>
2230
</VBox>
2331
<VBox sx={{ maxWidth: '800px' }}>
2432
<Typography variant='h2'>
2533
{t('app.browseAll.disclaimerTitle')}
2634
</Typography>
2735
<Typography variant='body1'>
28-
{t('app.browseAll.disclaimerText')}
36+
{t('app.browseAll.disclaimerText')}
2937
</Typography>
3038
</VBox>
3139
</VBox>

0 commit comments

Comments
 (0)