Skip to content

Commit fdfbf7d

Browse files
committed
Fix spacing. Move to center. Shorten name.
1 parent 36b387c commit fdfbf7d

File tree

1 file changed

+18
-20
lines changed

1 file changed

+18
-20
lines changed

components/footer/Footer.tsx

Lines changed: 18 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -26,44 +26,42 @@ export default function Footer() {
2626
align={{ base: 'center', md: 'center' }}
2727
>
2828
<Text>Developer DAO - {new Date().getFullYear()}</Text>
29-
<Stack direction={'row'} spacing={6}>
30-
<SocialButton
31-
label={'Twitter'}
32-
href={'https://twitter.com/devdao_academy'}
33-
>
34-
<FaTwitter />
35-
</SocialButton>
36-
<SocialButton
37-
label={'Github'}
38-
href={'https://github.com/developer-dao/academy'}
39-
>
40-
<FaGithub />
41-
</SocialButton>
42-
</Stack>
43-
<Box>
29+
<Stack direction={'row'} spacing={3}>
4430
<NextLink
4531
href={
4632
'https://github.com/Developer-DAO/academy/issues/new?assignees=&labels=needs+triage%2C+bug&template=bug_report.md&title='
4733
}
4834
passHref
4935
>
5036
<Link isExternal textDecoration="underline">
51-
Where to send feedback
37+
Feedback
5238
</Link>
5339
</NextLink>
54-
{'. '}
5540
<NextLink
5641
href={
5742
'https://github.com/Developer-DAO/academy/blob/main/CONTRIBUTING.md'
5843
}
5944
passHref
6045
>
6146
<Link isExternal textDecoration="underline">
62-
How to Contribute
47+
Contribute
6348
</Link>
6449
</NextLink>
65-
{'.'}
66-
</Box>
50+
</Stack>
51+
<Stack direction={'row'} spacing={6}>
52+
<SocialButton
53+
label={'Twitter'}
54+
href={'https://twitter.com/devdao_academy'}
55+
>
56+
<FaTwitter />
57+
</SocialButton>
58+
<SocialButton
59+
label={'Github'}
60+
href={'https://github.com/developer-dao/academy'}
61+
>
62+
<FaGithub />
63+
</SocialButton>
64+
</Stack>
6765
</Container>
6866
</Box>
6967
)

0 commit comments

Comments
 (0)