Files
developer-roadmap/pages/guides/index.tsx

68 lines
3.6 KiB
TypeScript
Raw Normal View History

2021-08-15 10:39:46 +02:00
import { Badge, Box, Button, Container, Heading, Link, Stack, Text } from '@chakra-ui/react';
import { Header } from '../../components/header';
import { LinksList } from '../../components/links-list';
import { LinksListItem } from '../../components/links-list-item';
import { OpensourceBanner } from '../../components/opensource-banner';
import { UpdatesBanner } from '../../components/updates-banner';
import { Footer } from '../../components/footer';
2021-08-15 15:57:21 +02:00
import { GuideGridItem } from './components/guide-grid-item';
2021-08-15 10:39:46 +02:00
2021-08-14 20:29:05 +02:00
export default function Guides() {
return (
2021-08-15 10:39:46 +02:00
<Box bg='white' minH='100vh'>
<Header />
<Box mb='60px'>
2021-08-15 10:42:56 +02:00
<Box pt='45px' pb='30px' borderBottomWidth={1}>
2021-08-15 10:39:46 +02:00
<Container maxW='container.md' position='relative'>
2021-08-15 10:42:56 +02:00
<Heading as='h1' color='black' fontSize='35px' fontWeight={700} mb='5px'>Visual Guides</Heading>
<Text fontSize='15px'>Succinct graphical explanations to development related topics.</Text>
2021-08-15 10:39:46 +02:00
</Container>
</Box>
2021-08-15 15:57:21 +02:00
<Container maxW='container.md' position='relative' mt='30px'>
2021-08-15 10:39:46 +02:00
<Stack isInline mb='30px' spacing='15px'>
2021-08-15 15:57:21 +02:00
<GuideGridItem
title='Session Based Authentication'
subtitle='Learn what the Session Based Authentication is, the pros and cons.'
date='June 25, 2021'
isNew
/>
<GuideGridItem
title='JSON Web Tokens'
subtitle='Learn what the Session Based Authentication is, the pros and cons and how you can implement it in your apps.'
date='June 25, 2021'
colorIndex={1}
/>
2021-08-15 10:39:46 +02:00
</Stack>
<LinksList>
<LinksListItem title='Session based Authentication' badgeText='pro' subtitle='June 12, 2021' />
<LinksListItem title='Session based Authentication' subtitle='June 12, 2021' />
<LinksListItem title='JSON Web Tokens' subtitle='June 05, 2021' />
<LinksListItem title='Token Based Authentication' subtitle='May 15, 2021' />
<LinksListItem title='Character Encodings' badgeText='pro' subtitle='March 06, 2021' />
<LinksListItem title='SSL vs TLS vs HTTPs vs SSH' subtitle='February 15, 2021' />
<LinksListItem title='Continuous Integration and Deployment' subtitle='February 15, 2021' />
<LinksListItem title='Authentication' subtitle='February 01, 2021' />
<LinksListItem title='DHCP in One Picture' subtitle='February 01, 2021' />
<LinksListItem title='Session Based Authentication' subtitle='February 01, 2021' />
<LinksListItem title='Session based Authentication' badgeText='pro' subtitle='June 12, 2021' />
<LinksListItem title='Session based Authentication' subtitle='June 12, 2021' />
<LinksListItem title='JSON Web Tokens' subtitle='June 05, 2021' />
<LinksListItem title='Token Based Authentication' subtitle='May 15, 2021' />
<LinksListItem title='Character Encodings' badgeText='pro' subtitle='March 06, 2021' />
<LinksListItem title='SSL vs TLS vs HTTPs vs SSH' subtitle='February 15, 2021' />
<LinksListItem title='Continuous Integration and Deployment' subtitle='February 15, 2021' />
<LinksListItem title='Authentication' subtitle='February 01, 2021' />
<LinksListItem title='DHCP in One Picture' subtitle='February 01, 2021' />
<LinksListItem title='Session Based Authentication' subtitle='February 01, 2021' />
</LinksList>
</Container>
</Box>
<OpensourceBanner />
<UpdatesBanner />
<Footer />
</Box>
2021-08-14 20:29:05 +02:00
);
}