1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-02-24 11:33:09 +01:00

161 lines
7.5 KiB
TypeScript
Raw Normal View History

2021-08-26 12:39:05 +02:00
import React from 'react';
import {
2021-09-04 19:40:11 +02:00
Box,
Button,
2021-08-26 12:39:05 +02:00
Container,
Flex,
Heading,
Image,
Link,
ListItem,
Stack,
Text,
UnorderedList
} from '@chakra-ui/react';
import { GlobalHeader } from '../components/global-header';
import { OpensourceBanner } from '../components/opensource-banner';
import { UpdatesBanner } from '../components/updates-banner';
import { Footer } from '../components/footer';
2021-09-04 19:40:11 +02:00
import siteConfig from '../content/site.json';
2021-09-09 22:57:34 +02:00
import Helmet from '../components/helmet';
2021-08-26 12:39:05 +02:00
export default function Thanks() {
return (
<Box bg='gray.50' minH='100vh'>
<GlobalHeader />
2021-09-09 22:57:34 +02:00
<Helmet title={'Thanks to Sponsors'} />
2021-08-26 12:39:05 +02:00
<Box mb='60px'>
<Container maxW={'container.sm'} position='relative'>
<Box mt='60px'>
<Flex alignItems='center'>
<Box width='100%'>
<Heading mb='10px' fontWeight={700}>Thanks!</Heading>
<Text>The project has been made possible by the all the wonderful humans and companies supporting the
project on <Link
2021-09-04 19:40:11 +02:00
fontWeight={600} textDecoration='underline' href={siteConfig.url.sponsor} target='_blank'>GitHub
Sponsors</Link> and we are truly
2021-08-26 12:39:05 +02:00
grateful for that.</Text>
</Box>
2021-09-04 19:40:11 +02:00
<Image width='190px'
2021-09-05 16:12:54 +02:00
alt={''}
2021-08-26 12:39:05 +02:00
rounded='100%'
src='https://media.giphy.com/media/l0HUgXEoxsNZjZNq8/giphy.gif?cid=790b76114c74e11ed7ce8d65995b6893524407ed7b7748bc&rid=giphy.gif&ct=g'
ml='50px'
2021-08-28 15:28:20 +02:00
d={['none', 'block']}
2021-08-26 12:39:05 +02:00
/>
</Flex>
<Box mt='30px'>
<Heading mb='15px' fontSize='25px' as='h2'>Companies</Heading>
<Stack spacing='10px'>
2021-09-18 12:03:03 +02:00
<Box as={Link} href='https://oss.capital/' target='_blank' borderWidth={1} borderRadius='5px' p='20px'
bg='teal.50'>
2021-08-26 12:39:05 +02:00
<Image
2021-09-22 14:56:16 +02:00
alt=''
2021-08-26 12:39:05 +02:00
w='400px'
2021-09-04 19:40:11 +02:00
src='/sponsors/oss-capital-logo.svg'
2021-08-26 12:39:05 +02:00
/>
</Box>
2021-09-22 14:56:16 +02:00
<Box as={Link} href='https://studio3t.com/' target='_blank' borderWidth={1} borderRadius='5px' p='20px'
bg='teal.50'>
<Image
alt=''
w='300px'
src='/sponsors/studio3t.png'
/>
</Box>
2021-09-18 12:03:03 +02:00
<Box as={Link} href='https://park.io' _hover={{ textDecoration: 'none' }} target='_blank'
borderWidth={1}
borderRadius='5px' p='10px 25px' bg='#3d157a' color='white'>
<Text fontWeight={700} fontSize='55px'>park.io</Text>
</Box>
<Box as={Link} href={'https://forbes.com'} _hover={{ textDecoration: 'none' }} target='_blank'
borderWidth={1}
borderRadius='5px' p='20px' bg='#231f20'>
2021-08-26 12:39:05 +02:00
<Image
2021-09-22 14:56:16 +02:00
alt=''
2021-08-26 12:39:05 +02:00
w='250px'
2021-09-04 19:40:11 +02:00
src='/sponsors/forbes-logo.png'
2021-08-26 12:39:05 +02:00
/>
</Box>
2021-09-18 12:03:03 +02:00
<Box as={Link} href='https://zalando.de' target='_blank' borderWidth={1} borderRadius='5px' p='20px'
bg='teal.50'>
2021-08-26 12:39:05 +02:00
<Image
2021-09-22 14:56:16 +02:00
alt=''
2021-08-26 12:39:05 +02:00
w='300px'
2021-09-04 19:40:11 +02:00
src='/sponsors/zalando-logo.svg'
2021-08-26 12:39:05 +02:00
/>
</Box>
</Stack>
</Box>
<Box mt='40px'>
<Heading mb='15px' fontSize='25px' as='h2'>Monthly Sponsors</Heading>
<UnorderedList>
2021-09-09 22:57:34 +02:00
<ListItem mb='5px'><Link color='blue.500' target='_blank' fontWeight={500}
href='https://github.com/Stuart-cmd'>Stuart Bowles</Link></ListItem>
<ListItem mb='5px'><Link color='blue.500' target='_blank' fontWeight={500}
href='https://github.com/MelnikovAG'>Alexander
2021-09-04 19:40:11 +02:00
Blake</Link></ListItem>
2021-09-09 22:57:34 +02:00
<ListItem mb='5px'><Link color='blue.500' target='_blank' fontWeight={500}
href='https://github.com/josephjacks'>Joseph
2021-09-04 19:40:11 +02:00
Jacks</Link></ListItem>
2021-09-09 22:57:34 +02:00
<ListItem mb='5px'><Link color='blue.500' target='_blank' fontWeight={500}
href='https://github.com/MustafaMagdi'>Mustafa
2021-09-04 19:40:11 +02:00
Magdi</Link></ListItem>
2021-09-09 22:57:34 +02:00
<ListItem mb='5px'><Link color='blue.500' target='_blank' fontWeight={500}
href='https://github.com/dmytbolko'>Dmytro
2021-09-04 19:40:11 +02:00
Bolkachov</Link></ListItem>
2021-09-09 22:41:57 +02:00
<ListItem mb='5px'><Link color='blue.500' target='_blank' fontWeight={500}
2021-09-04 19:40:11 +02:00
href='https://github.com/liquidaty'>Liquidaty</Link></ListItem>
2021-09-09 22:57:34 +02:00
<ListItem mb='5px'><Link color='blue.500' target='_blank' fontWeight={500}
href='https://github.com/Lazy-AL'>Anri
2021-09-04 19:40:11 +02:00
Lazash</Link></ListItem>
2021-08-26 12:39:05 +02:00
</UnorderedList>
</Box>
<Box mt='40px'>
<Heading mb='15px' fontSize='25px' as='h2'>Past or One Time Sponsors</Heading>
<UnorderedList>
2021-09-29 17:47:37 +02:00
<ListItem mb='5px'><Link color='blue.500' target='_blank' fontWeight={500}
href='https://github.com/falizhar'>Falah Sultan Alizhar</Link></ListItem>
2021-09-06 14:28:39 +02:00
<ListItem mb='5px'><Link color='blue.500' target='_blank' fontWeight={500}
href='https://github.com/mian-muhammad'>Mian Muhammad</Link></ListItem>
<ListItem mb='5px'><Link color='blue.500' target='_blank' fontWeight={500}
2021-09-04 19:40:11 +02:00
href='https://digitalocean.com'>DigitalOcean</Link></ListItem>
2021-09-06 14:28:39 +02:00
<ListItem mb='5px'><Link color='blue.500' target='_blank' fontWeight={500}
href='https://github.com/gabcvit'>Gabriel
2021-09-04 19:40:11 +02:00
Checchia</Link></ListItem>
2021-09-06 14:28:39 +02:00
<ListItem mb='5px'><Link color='blue.500' target='_blank' fontWeight={500}
href='https://github.com/hadasbro'>Slawomir
2021-09-04 19:40:11 +02:00
Hadas</Link></ListItem>
2021-09-06 14:28:39 +02:00
<ListItem mb='5px'><Link color='blue.500' target='_blank' fontWeight={500}
href='https://github.com/tugotron'>Victor
2021-09-04 19:40:11 +02:00
Sevelev</Link></ListItem>
2021-09-06 14:28:39 +02:00
<ListItem mb='5px'><Link color='blue.500' target='_blank' fontWeight={500}
href='https://github.com/matheusfelipeog'>Matheus
2021-09-04 19:40:11 +02:00
Felipe</Link></ListItem>
2021-09-06 14:28:39 +02:00
<ListItem mb='5px'><Link color='blue.500' target='_blank' fontWeight={500}
href='https://github.com/emretanriverdi'>Emre
2021-09-04 19:40:11 +02:00
Tanriverdi</Link></ListItem>
2021-08-26 12:39:05 +02:00
</UnorderedList>
</Box>
<Box mt='40px' borderWidth={1} padding='20px' rounded='5px'>
<Heading as='h2' mb='10px'>Support the Project</Heading>
<Text mb='15px'>Sponsor me on GitHub to help ensure the continuity of the project.</Text>
2021-09-05 21:19:51 +02:00
<Button _hover={{ textDecoration: 'none' }} as={Link} href={siteConfig.url.sponsor} colorScheme='green'>Sponsor
me on GitHub</Button>
2021-08-26 12:39:05 +02:00
</Box>
</Box>
</Container>
</Box>
<OpensourceBanner />
<UpdatesBanner />
<Footer />
</Box>
);
}