computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
3.1 KiB
59 lines
3.1 KiB
import { Box, Container, Flex, Image, Link, Stack, Text } from '@chakra-ui/react'; |
|
|
|
function NavigationLinks() { |
|
return ( |
|
<> |
|
<Stack isInline d={['none', 'none', 'flex']} color='gray.400' fontWeight={600} spacing='30px'> |
|
<Link _hover={{ color: 'white' }} href='#'>Roadmaps</Link> |
|
<Link _hover={{ color: 'white' }} href='#'>Guides</Link> |
|
<Link _hover={{ color: 'white' }} href='#'>Videos</Link> |
|
<Link _hover={{ color: 'white' }} href='#'>Podcasts</Link> |
|
<Link _hover={{ color: 'white' }} href='#'>About</Link> |
|
<Link _hover={{ color: 'white' }} href='#'>YouTube</Link> |
|
</Stack> |
|
|
|
<Stack d={['flex', 'flex', 'none']} color='gray.400' fontWeight={600} spacing={0}> |
|
<Link py='7px' borderBottomWidth={1} borderBottomColor='gray.800' _hover={{ color: 'white' }} href='#'>Roadmaps</Link> |
|
<Link py='7px' borderBottomWidth={1} borderBottomColor='gray.800' _hover={{ color: 'white' }} href='#'>Guides</Link> |
|
<Link py='7px' borderBottomWidth={1} borderBottomColor='gray.800' _hover={{ color: 'white' }} href='#'>Videos</Link> |
|
<Link py='7px' borderBottomWidth={1} borderBottomColor='gray.800' _hover={{ color: 'white' }} href='#'>Podcasts</Link> |
|
<Link py='7px' borderBottomWidth={1} borderBottomColor='gray.800' _hover={{ color: 'white' }} href='#'>Thanks</Link> |
|
<Link py='7px' borderBottomWidth={1} borderBottomColor='gray.800' _hover={{ color: 'white' }} href='#'>About</Link> |
|
<Link py='7px' _hover={{ color: 'white' }} href='#'>YouTube</Link> |
|
</Stack> |
|
</> |
|
); |
|
} |
|
|
|
export function Footer() { |
|
return ( |
|
<Box bg='gray.900' p={['25px 0', '25px 0', '40px 0']}> |
|
<Container maxW='container.md'> |
|
<NavigationLinks /> |
|
|
|
<Box mt={['40px', '40px', '50px']} mb='40px' maxW='500px'> |
|
<Flex spacing={0} alignItems='center' color='gray.400'> |
|
<Link d='flex' alignItems='center' fontWeight={600} _hover={{ textDecoration: 'none', color: 'white' }} |
|
href='/'> |
|
<Image h='25px' w='25px' src='/logo.svg' mr='6px' /> |
|
roadmap.sh |
|
</Link> |
|
<Text as='span' mx='7px'>by</Text> |
|
<Link bg='blue.500' px='6px' py='2px' rounded='4px' color='white' fontWeight={600} fontSize='13px' |
|
_hover={{ textDecoration: 'none', bg: 'blue.600' }} href='/'>@kamranahmedse</Link> |
|
</Flex> |
|
|
|
<Text my='15px' fontSize='14px' color='gray.500'>Community created roadmaps, articles, resources and |
|
journeys to help you choose your path and grow in your career.</Text> |
|
|
|
<Text fontSize='14px' color='gray.500'> |
|
<Text as='span' mr='10px'>© roadmap.sh</Text>· |
|
<Link _hover={{ textDecoration: 'none', color: 'white' }} color='gray.400' mx='10px'>FAQs</Link>· |
|
<Link _hover={{ textDecoration: 'none', color: 'white' }} color='gray.400' mx='10px'>Terms</Link>· |
|
<Link _hover={{ textDecoration: 'none', color: 'white' }} color='gray.400' mx='10px'>Privacy</Link> |
|
</Text> |
|
</Box> |
|
</Container> |
|
</Box> |
|
); |
|
}
|
|
|