Merge branch 'master' into setupDocs

pull/26459/head^2
Corwin Smith 2 years ago
commit 71ce846b9e
  1. 82
      src/components/layouts/Footer.tsx

@ -22,14 +22,14 @@ export const Footer: FC = () => {
borderColor='brand.light.primary' borderColor='brand.light.primary'
> >
<Flex <Flex
sx={{ mt: '-2px !important' }}
borderBottom={{ borderBottom={{
base: '2px solid', base: '2px solid',
md: 'none' md: 'none'
}} }}
borderColor='brand.light.primary' borderColor='brand.light.primary'
> >
<NextLink href={DOWNLOADS_PAGE} passHref> <Stack
<Link
flex={1} flex={1}
color='brand.light.primary' color='brand.light.primary'
_hover={{ _hover={{
@ -37,16 +37,18 @@ export const Footer: FC = () => {
bg: 'brand.light.primary', bg: 'brand.light.primary',
color: 'yellow.50 !important' color: 'yellow.50 !important'
}} }}
height='full' justifyContent='center'
borderRight='2px solid' borderRight='2px solid'
borderColor='brand.light.primary' borderColor='brand.light.primary'
> >
<NextLink href={DOWNLOADS_PAGE} passHref>
<Link _hover={{ textDecoration: 'none' }}>
<Text textStyle='home-section-link-label'>DOWNLOADS</Text> <Text textStyle='home-section-link-label'>DOWNLOADS</Text>
</Link> </Link>
</NextLink> </NextLink>
</Stack>
<NextLink href={DOCS_PAGE} passHref> <Stack
<Link
flex={1} flex={1}
color='brand.light.primary' color='brand.light.primary'
_hover={{ _hover={{
@ -54,24 +56,23 @@ export const Footer: FC = () => {
bg: 'brand.light.primary', bg: 'brand.light.primary',
color: 'yellow.50 !important' color: 'yellow.50 !important'
}} }}
height='full'
borderRight={{ borderRight={{
base: 'none', base: 'none',
md: '2px solid' md: '2px solid'
}} }}
borderColor='brand.light.primary' borderColor='brand.light.primary'
justifyContent='center'
> >
<NextLink href={DOCS_PAGE} passHref>
<Link _hover={{ textDecoration: 'none' }}>
<Text textStyle='home-section-link-label'>DOCUMENTATION</Text> <Text textStyle='home-section-link-label'>DOCUMENTATION</Text>
</Link> </Link>
</NextLink> </NextLink>
</Stack>
</Flex> </Flex>
<Flex> <Flex sx={{ mt: '0 !important' }}>
<NextLink href={GETH_TWITTER_URL} passHref> <Stack
<Link
isExternal
p={4}
display='flex'
flex={1} flex={1}
data-group data-group
borderLeft={{ borderLeft={{
@ -81,73 +82,76 @@ export const Footer: FC = () => {
}} }}
borderColor='brand.light.primary !important' borderColor='brand.light.primary !important'
_hover={{ _hover={{
bg: 'brand.light.primary' bg: 'brand.light.primary',
}} }}
justifyContent='center' alignItems='center'
p={4}
> >
<NextLink href={GETH_TWITTER_URL} passHref>
<Link isExternal>
<TwitterIcon <TwitterIcon
w={6} w={8}
height={6} height={8}
margin='auto'
_groupHover={{ _groupHover={{
svg: { svg: {
path: { fill: 'yellow.50 !important' } path:{fill: 'yellow.50 !important'}
} }
}} }}
/> />
</Link> </Link>
</NextLink> </NextLink>
</Stack>
<NextLink href={GETH_DISCORD_URL} passHref> <Stack
<Link
isExternal
p={4}
data-group data-group
display='flex'
flex={1} flex={1}
_hover={{ _hover={{
bg: 'brand.light.primary' bg: 'brand.light.primary',
}} }}
justifyContent='center' alignItems='center'
borderWidth='2px' borderWidth='2px'
borderStyle='none solid' borderStyle='none solid'
borderColor='brand.light.primary' borderColor='brand.light.primary'
p={4}
> >
<NextLink href={GETH_DISCORD_URL} passHref>
<Link isExternal>
<DiscordIcon <DiscordIcon
w={6} w={8}
height={6} height={8}
_groupHover={{ _groupHover={{
svg: { svg: {
path: { fill: 'yellow.50 !important' } path:{fill: 'yellow.50 !important'}
} }
}} }}
/> />
</Link> </Link>
</NextLink> </NextLink>
</Stack>
<NextLink href={GETH_REPO_URL} passHref> <Stack
<Link
isExternal
p={4}
data-group data-group
flex={1} flex={1}
display='flex'
_hover={{ _hover={{
bg: 'brand.light.primary' bg: 'brand.light.primary',
}} }}
justifyContent='center' alignItems='center'
p={4}
> >
<NextLink href={GETH_REPO_URL} passHref>
<Link isExternal>
<GitHubIcon <GitHubIcon
w={6} w={7}
height={6} height={7}
_groupHover={{ _groupHover={{
svg: { svg: {
path: { fill: 'yellow.50 !important' } path:{fill: 'yellow.50 !important'}
} }
}} }}
/> />
</Link> </Link>
</NextLink> </NextLink>
</Stack>
</Flex> </Flex>
</Flex> </Flex>
@ -163,7 +167,7 @@ export const Footer: FC = () => {
borderColor='brand.light.primary' borderColor='brand.light.primary'
flex={1} flex={1}
> >
<Text textStyle='footer-text'>© 20132022. The go-ethereum Authors.</Text> <Text textStyle='footer-text'>{`© 2013–${new Date().getFullYear()}. The go-ethereum Authors.`}</Text>
</Stack> </Stack>
</Flex> </Flex>
); );

Loading…
Cancel
Save