|
|
|
@ -1,4 +1,17 @@ |
|
|
|
|
import { Box, Container, Divider, Heading, Image, Text, Flex, Link, Stack, Button, SimpleGrid } from '@chakra-ui/react'; |
|
|
|
|
import { |
|
|
|
|
Box, |
|
|
|
|
Container, |
|
|
|
|
Divider, |
|
|
|
|
Heading, |
|
|
|
|
Image, |
|
|
|
|
Text, |
|
|
|
|
Flex, |
|
|
|
|
Link, |
|
|
|
|
Stack, |
|
|
|
|
Button, |
|
|
|
|
SimpleGrid, |
|
|
|
|
Badge |
|
|
|
|
} from '@chakra-ui/react'; |
|
|
|
|
import { Head } from 'next/document'; |
|
|
|
|
|
|
|
|
|
export default function Home() { |
|
|
|
@ -10,6 +23,9 @@ export default function Home() { |
|
|
|
|
<Link d='flex' href='/'> |
|
|
|
|
<Image h='45px' src='/logo.svg' /> |
|
|
|
|
</Link> |
|
|
|
|
{/*<Link d='flex' href='/' color='white' fontWeight={600} fontSize='20px'>*/} |
|
|
|
|
{/* roadmap.sh*/} |
|
|
|
|
{/*</Link>*/} |
|
|
|
|
<Stack shouldWrapChildren isInline spacing='15px' alignItems='center' color='gray.50' fontSize='15px'> |
|
|
|
|
<Link borderBottomWidth={0} borderBottomColor='gray.500' |
|
|
|
|
_hover={{ textDecoration: 'none', borderBottomColor: 'white' }} fontWeight={500} |
|
|
|
@ -27,12 +43,14 @@ export default function Home() { |
|
|
|
|
<Box> |
|
|
|
|
<Container maxW='container.md'> |
|
|
|
|
<Box py='30px'> |
|
|
|
|
<Heading fontSize='28px' mb='10px'>Hey there! 👋</Heading> |
|
|
|
|
<Text fontSize='16px'> |
|
|
|
|
<Heading fontSize='28px' mb='15px'>Hey there! 👋</Heading> |
|
|
|
|
<Text fontSize='16px' mb='10px'> |
|
|
|
|
<Text fontWeight={500} as='span'>roadmap.sh</Text> is a community effort to create roadmaps, guides and |
|
|
|
|
other educational content |
|
|
|
|
to help guide the developers in picking up the path and guide their learnings. |
|
|
|
|
</Text> |
|
|
|
|
|
|
|
|
|
<Text fontSize='16px'>We also have a <Link textDecoration={'underline'} href={'#'} fontWeight={600}>YouTube channel</Link> and <Link textDecoration='underline' href={'#'} fontWeight={600}>graphical guides</Link> which we hope you are going to love.</Text> |
|
|
|
|
</Box> |
|
|
|
|
<SimpleGrid columns={{ xl: 3, md: 3, sm: 2, base: 1 }} isInline spacing='20px'> |
|
|
|
|
<Link as={Box} href={'#'} _hover={{ textDecoration: 'none', shadow: '2xl' }} flex={1} shadow='2xl' |
|
|
|
@ -69,6 +87,9 @@ export default function Home() { |
|
|
|
|
bg='red.900' color='white' p='15px' rounded='10px'> |
|
|
|
|
<Heading fontSize='22px' mb='5px'>Android</Heading> |
|
|
|
|
<Text color='gray.200' fontSize='13px'>Step by step guide for DevOps or Operations role in 2021</Text> |
|
|
|
|
<Badge mt='10px' variant="subtle" colorScheme="green"> |
|
|
|
|
Community |
|
|
|
|
</Badge> |
|
|
|
|
</Link> |
|
|
|
|
</SimpleGrid> |
|
|
|
|
</Container> |
|
|
|
|