Skip to content
Open
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
22 changes: 19 additions & 3 deletions src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,14 +103,15 @@ const IndexPage = (props) => {
display='flex'
flexDirection='column'
alignItems='center'
justifyContent='flex-start'
justifyContent='center'
padding={isMobile ? 5 : 10}
sx={{
backgroundImage:
'url("marek-szturc-2s3fI3M1lO0-unsplash.jpg")',
backgroundRepeat: 'no-repeat',
backgroundSize: 'cover',
backgroundPosition: 'center',
height: '65dvh',
}}
>
<Typography
Expand All @@ -123,8 +124,23 @@ const IndexPage = (props) => {
as we showcase the top contributors shaping the future of
continuous integration and delivery
</Typography>
<Box sx={{ paddingTop: 8 }}>
<img src='/jenkins.png' alt='Jenkins logo' />
<Box
sx={{
paddingTop: 8,
}}
>
<img
style={{
width: '150px',
objectFit: 'cover',
borderRadius: '50%',
display: 'relative',
justifyContent: 'center',
alignItems: 'center',
}}
src='/jenkins.png'
alt='Jenkins logo'
/>
</Box>
</Box>

Expand Down