Skip to content

Commit

Permalink
added: contributors name
Browse files Browse the repository at this point in the history
  • Loading branch information
Zain-ul-din committed Mar 13, 2024
1 parent 89bd8ed commit ca2f26d
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable @next/next/no-img-element */
import {
Box,
Button,
Expand Down Expand Up @@ -82,14 +83,14 @@ export default function Footer({ fixedBottom }: { fixedBottom: boolean }): JSX.E
</Stack>
</Container>
<FooterLinks />
<Center marginY={'1rem'}>
<Center my={6}>
<Heading fontWeight={'thin'} className="roboto" fontSize={'2xl'}>
Github Contributors
</Heading>
</Center>
<Flex
background={'inherit'}
gap={isUnder600 ? '0.5rem' : '1rem'}
gap={isUnder600 ? '0.5rem' : '1.5rem'}
flexDirection={'row'}
flexWrap={'wrap'}
justifyContent={'center'}
Expand Down Expand Up @@ -222,7 +223,8 @@ const GithubContributors = ({ urls }: { urls: string[] }) => {
position={'relative'}
display={'flex'}
boxShadow={'none'}
justifyContent={'center'}>
justifyContent={'center'}
gap={1}>
<img
src={user.avatar_url}
alt={`${user.login}-avatar`}
Expand All @@ -245,11 +247,13 @@ const GithubContributors = ({ urls }: { urls: string[] }) => {
boxShadow={'0px 0px 20px rgba(255,255,255,0.05)'}
zIndex={'-10'}
top={'0'}
left={'0'}>
left={'13px'}>
{' '}
</Flex>
)}
{/*<Text textAlign={'center'}>{user.login}</Text>*/}
<Text textAlign={'center'} fontWeight={'hairline'}>
{user.login}
</Text>
</Card>
</a>
);
Expand Down

0 comments on commit ca2f26d

Please sign in to comment.