Roadmap to becoming a developer in 2022
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.

40 lines
1.0 KiB

3 years ago
import { Box } from '@chakra-ui/react';
3 years ago
export const CustomAd = () => {
return (
3 years ago
<Box className='custom-ad' d={['none !important', 'flex !important']}>
3 years ago
<span>
<span className='carbon-wrap'>
3 years ago
<a
href='https://freemote.com/strategy?sl=roadmap'
className='carbon-img'
target='_blank'
3 years ago
>
<img
src='/fm-img.png'
alt='FM Logo'
height='100'
width='130'
style={{ maxWidth: '130px', border: 'none' }}
3 years ago
/>
</a>
<a
href='https://freemote.com/strategy?sl=roadmap'
className='carbon-text'
target='_blank'
3 years ago
>
He Went from ZERO TO $74,000 as a Full Time Developer in 7 Weeks
</a>
</span>
<a
href='https://github.com/sponsors/kamranahmedse'
className='carbon-poweredby'
target='_blank'
3 years ago
>
Sponsored by
</a>
</span>
3 years ago
</Box>
3 years ago
);
};