Files
developer-roadmap/pages/index.tsx

101 lines
5.0 KiB
TypeScript
Raw Normal View History

2021-08-14 20:32:43 +02:00
import { Box, Container, Heading, Link, SimpleGrid, StackDivider, Text, Tooltip, VStack } from '@chakra-ui/react';
2021-08-02 13:22:21 +02:00
import { InfoIcon } from '@chakra-ui/icons';
2021-08-14 14:01:42 +02:00
import { Header } from '../components/header';
import { Footer } from '../components/footer';
import { UpdatesBanner } from '../components/updates-banner';
import { OpensourceBanner } from '../components/opensource-banner';
2021-08-14 20:29:05 +02:00
import { GuideListItem } from './guides/components/guide-list-item';
import { DimmedMore } from '../components/dimmed-more';
import { VideoListItem } from './watch/components/video-list-item';
2021-08-14 20:43:23 +02:00
import { RoadmapGridItem } from './roadmaps/components/roadmap-grid-item';
2021-08-01 13:08:35 +02:00
export default function Home() {
return (
2021-08-12 17:09:15 +02:00
<Box bg='teal.50' minH='100vh'>
2021-08-14 14:01:42 +02:00
<Header />
2021-08-01 18:37:32 +02:00
<Box>
<Container maxW='container.md'>
<Box py='30px'>
2021-08-01 19:09:04 +02:00
<Heading fontSize='28px' mb='15px'>Hey there! 👋</Heading>
<Text fontSize='16px' mb='10px'>
2021-08-01 18:37:32 +02:00
<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>
2021-08-01 19:09:04 +02:00
2021-08-01 21:38:34 +02:00
<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>
2021-08-01 18:37:32 +02:00
</Box>
2021-08-12 17:09:15 +02:00
<SimpleGrid columns={{ xl: 3, md: 3, sm: 2, base: 1 }} spacing='20px'>
2021-08-14 20:43:23 +02:00
<RoadmapGridItem colorIndex={0} title={'Frontend'} subtitle={'Step by step guide to becoming a frontend developer in 2021'} />
<RoadmapGridItem colorIndex={1} title={'Backend'} subtitle={'Step by step guide to becoming a backend developer in 2021'} />
<RoadmapGridItem colorIndex={2} title={'DevOps'} subtitle={'Step by step guide for DevOps or Operations role in 2021'} />
<RoadmapGridItem colorIndex={3} title={'React'} subtitle={'Step by step guide to become a React Developer in 2021'} />
<RoadmapGridItem colorIndex={4} title={'DBA'} subtitle={'Step by step guide to become a PostgreSQL DBA in 2021'} isCommunity />
<RoadmapGridItem colorIndex={5} title={'Android'} subtitle={'Step by step guide to become an Android Developer in 2021'} isCommunity />
2021-08-01 18:37:32 +02:00
</SimpleGrid>
</Container>
</Box>
2021-08-01 21:38:34 +02:00
<Box>
2021-08-02 18:15:42 +02:00
<Container maxW='container.md' position='relative'>
<Box pt='60px' mb='20px'>
2021-08-01 21:43:43 +02:00
<Heading color='green.500' fontSize='25px' mb='5px'>Visual Guides</Heading>
2021-08-01 21:38:34 +02:00
</Box>
2021-08-14 20:29:05 +02:00
<VStack
rounded='5px'
divider={<StackDivider borderColor='gray.200' />}
spacing={0}
align='stretch'
>
<GuideListItem title='Session based Authentication' date='June 12, 2021' />
<GuideListItem title='JSON Web Tokens' date='June 05, 2021' />
<GuideListItem title='Token Based Authentication' date='May 15, 2021' />
<GuideListItem isPro title='Character Encodings' date='March 06, 2021' />
<GuideListItem title='SSL vs TLS vs HTTPs vs SSH' date='February 15, 2021' />
<GuideListItem title='Continuous Integration and Deployment' date='February 15, 2021' />
<GuideListItem title='Authentication' date='February 01, 2021' />
<GuideListItem title='DHCP in One Picture' date='February 01, 2021' />
<GuideListItem title='Session Based Authentication' date='February 01, 2021' />
<DimmedMore text='View all Guides' />
</VStack>
2021-08-01 21:38:34 +02:00
</Container>
</Box>
2021-08-02 18:15:42 +02:00
<Box>
<Container maxW='container.md'>
<Box pt='40px' mb='20px'>
<Heading color='green.500' fontSize='25px' mb='5px'>Video Explanations</Heading>
</Box>
2021-08-03 23:07:54 +02:00
<VStack
rounded='5px'
divider={<StackDivider borderColor='gray.200' />}
spacing={0}
align='stretch'
>
2021-08-14 20:29:05 +02:00
<VideoListItem title='Transport Protocols: TCP vs UDP' duration='15 minutes' />
<VideoListItem title='OSI Model Explained' duration='10 minutes' />
<VideoListItem title='Creating a React App' isPro duration='15 minutes' />
<VideoListItem title='DOM vs Shadow DOM vs Virtual DOM' isPro duration='15 minutes' />
<VideoListItem title='Everything you need to know about HTTP caching' isPro duration='10 minutes' />
<VideoListItem title='Content Delivery Networks' duration='5 minutes' />
<VideoListItem title='Load Balancers in Depth' duration='15 minutes' />
<VideoListItem title='DNS and how does it work?' duration='2 minutes' />
<VideoListItem title='JavaScript Fetch API' duration='22 minutes' />
<DimmedMore text={'View all Videos'} />
2021-08-03 23:07:54 +02:00
</VStack>
2021-08-02 18:15:42 +02:00
</Container>
</Box>
2021-08-12 17:09:15 +02:00
2021-08-14 14:01:42 +02:00
<OpensourceBanner />
<UpdatesBanner />
<Footer />
2021-08-01 18:37:32 +02:00
</Box>
);
2021-08-01 13:08:35 +02:00
}