1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-02-24 03:23:08 +01:00

40 lines
1.0 KiB
TypeScript
Raw Normal View History

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