2021-04-18 01:56:23 +02:00
|
|
|
import { faCode, faMicrochip } from '@fortawesome/free-solid-svg-icons'
|
|
|
|
import { faGit } from '@fortawesome/free-brands-svg-icons'
|
|
|
|
|
|
|
|
import { InterestItem } from './InterestItem'
|
|
|
|
|
|
|
|
export const InterestsList: React.FC = () => {
|
|
|
|
return (
|
2021-12-04 15:52:51 +01:00
|
|
|
<div className='my-4 flex justify-center'>
|
|
|
|
<ul className='m-0 flex w-96 list-none justify-around p-0'>
|
2021-05-08 19:52:04 +02:00
|
|
|
<InterestItem
|
|
|
|
title='Developer Full Stack Junior'
|
|
|
|
fontAwesomeIcon={faCode}
|
|
|
|
/>
|
|
|
|
<InterestItem
|
|
|
|
title='Passionate about High-Tech'
|
|
|
|
fontAwesomeIcon={faMicrochip}
|
|
|
|
/>
|
|
|
|
<InterestItem title='Open-Source enthusiast' fontAwesomeIcon={faGit} />
|
|
|
|
</ul>
|
|
|
|
</div>
|
2021-04-18 01:56:23 +02:00
|
|
|
)
|
|
|
|
}
|