|
| 1 | +import { prefix } from "../../constants" |
| 2 | + |
| 3 | +const DeveloperPath = () => { |
| 4 | + const devPaths = [ |
| 5 | + { |
| 6 | + name: 'Simplilearn', |
| 7 | + imgUrl: '/simplilearn.png', |
| 8 | + text: 'Blockchain tutorial for beginners to advanced Level.', |
| 9 | + url: 'https://www.simplilearn.com/tutorials/blockchain-tutorial?source=sl_frs_nav_playlist_video_clicked' |
| 10 | + }, |
| 11 | + { |
| 12 | + name: 'Learn with Whiteboard', |
| 13 | + imgUrl: '/whiteboard.png', |
| 14 | + text: 'The skills required for a blockchain developer which is one of the in-demand professions today.', |
| 15 | + url: 'https://www.youtube.com/watch?v=x9l3y0cdpuU' |
| 16 | + }, |
| 17 | + { |
| 18 | + name: 'Figment', |
| 19 | + imgUrl: '/figment.png', |
| 20 | + text: 'The Web 3 education platform for developers, by developers.Learn the Web 3 basics with 101 Pathways.', |
| 21 | + url: 'https://learn.figment.io/' |
| 22 | + }, |
| 23 | + |
| 24 | + { |
| 25 | + name: 'CryptoZombies', |
| 26 | + imgUrl: '/cryptozombie.png', |
| 27 | + text: 'CryptoZombies is an interactive school that teaches you all things technical about blockchains.', |
| 28 | + url: 'https://cryptozombies.io/' |
| 29 | + } |
| 30 | + ] |
| 31 | + |
| 32 | + return ( |
| 33 | + <section className='bg-gray-50'> |
| 34 | + <div className='container mx-auto max-w-7xl pt-8'> |
| 35 | + <h1 className='w-full my-2 text-4xl font-bold leading-tight text-center text-gray-800'> |
| 36 | + Blockchain Developer Path |
| 37 | + </h1> |
| 38 | + <p className='text-center text-gray-800 text-base px-6 mb-5 mx-10'> |
| 39 | + The latest field in the tech industry |
| 40 | + </p> |
| 41 | + <div className='w-full mb-4'> |
| 42 | + <div className='h-1 mx-auto gradient w-64 opacity-25 my-0 py-0 rounded-t'></div> |
| 43 | + </div> |
| 44 | + |
| 45 | + <div className='text-black grid grid-col-1 p-3 gap-y-3 md:grid md:grid-cols-2 md:gap-3 md:p-3'> |
| 46 | + {devPaths.map(({ name, imgUrl, text, url }, index) => ( |
| 47 | + <div |
| 48 | + key={name + index} |
| 49 | + className='bg-white flex-1 rounded-md shadow focus:outline-none focus:shadow-outline transform transition hover:scale-105 hover:shadow-lg hover:z-20 duration-300 ease-in-out p-4' |
| 50 | + > |
| 51 | + <div className='flex items-center justify-start overflow-hidden'> |
| 52 | + <div className='relative bg-contain w-1/3'> |
| 53 | + <img |
| 54 | + alt={name} |
| 55 | + className='bg-gray-50 p-5 rounded-md' |
| 56 | + src={prefix+imgUrl} |
| 57 | + /> |
| 58 | + </div> |
| 59 | + <div id='body' className='flex flex-col gap-y-3 pl-5'> |
| 60 | + <h4 id='name' className='text-xl font-semibold'> |
| 61 | + {name} |
| 62 | + </h4> |
| 63 | + <p id='caption' className='text-gray-800'> |
| 64 | + {text} |
| 65 | + </p> |
| 66 | + <div id='label' className='flex text-sm gap-x-3'> |
| 67 | + <a href={url}> |
| 68 | + <button className='cursor-pointer font-semibold bg-blue-100 text-blue-600 rounded-md py-2 px-4 focus:outline-none'> |
| 69 | + Take me there! |
| 70 | + </button> |
| 71 | + </a> |
| 72 | + <button className='font-semibold bg-blue-100 text-blue-600 rounded-md py-2 px-4 focus:outline-none'> |
| 73 | + Development |
| 74 | + </button> |
| 75 | + </div> |
| 76 | + </div> |
| 77 | + </div> |
| 78 | + </div> |
| 79 | + ))} |
| 80 | + </div> |
| 81 | + |
| 82 | + <div className='flex justify-center items-center py-5'> |
| 83 | + <a |
| 84 | + href='https://github.com/WebXDAO/blockchain-dev-path' |
| 85 | + target='_blank' |
| 86 | + rel='noreferrer' |
| 87 | + > |
| 88 | + <button className='bg-gray-700 text-white rounded-md py-2 px-8 shadow transform transition hover:scale-85 hover:shadow-lg duration-300 ease-in-out'> |
| 89 | + See All |
| 90 | + </button> |
| 91 | + </a> |
| 92 | + </div> |
| 93 | + </div> |
| 94 | + </section> |
| 95 | + ) |
| 96 | +} |
| 97 | + |
| 98 | +export default DeveloperPath |
0 commit comments