2021-04-18 01:56:23 +02:00
|
|
|
import { SocialMediaItem } from './SocialMediaItem'
|
2021-05-08 19:52:04 +02:00
|
|
|
import { TwitterIcon } from './SocialMediaIcons/TwitterIcon'
|
|
|
|
import { GitHubIcon } from './SocialMediaIcons/GitHubIcon'
|
2021-06-24 20:10:53 +02:00
|
|
|
import { GitLabIcon } from './SocialMediaIcons/GitLabIcon'
|
2021-05-08 19:52:04 +02:00
|
|
|
import { YouTubeIcon } from './SocialMediaIcons/YouTubeIcon'
|
|
|
|
import { TwitchIcon } from './SocialMediaIcons/TwitchIcon'
|
|
|
|
import { EmailIcon } from './SocialMediaIcons/EmailIcon'
|
2021-06-24 20:10:53 +02:00
|
|
|
import { NPMIcon } from './SocialMediaIcons/NPMIcon'
|
2021-04-18 01:56:23 +02:00
|
|
|
|
2023-08-01 17:22:09 +02:00
|
|
|
export const SocialMediaList = (): JSX.Element => {
|
2021-04-18 01:56:23 +02:00
|
|
|
return (
|
2021-12-04 15:52:51 +01:00
|
|
|
<ul className='social-media-list m-0 mt-2 list-none py-4 text-center'>
|
2023-05-31 20:09:08 +02:00
|
|
|
<SocialMediaItem link='https://github.com/theoludwig' ariaLabel='GitHub'>
|
2021-05-08 19:52:04 +02:00
|
|
|
<GitHubIcon />
|
|
|
|
</SocialMediaItem>
|
2023-05-31 20:09:08 +02:00
|
|
|
<SocialMediaItem link='https://gitlab.com/theoludwig' ariaLabel='GitLab'>
|
2021-06-24 20:10:53 +02:00
|
|
|
<GitLabIcon />
|
|
|
|
</SocialMediaItem>
|
2023-07-30 18:50:14 +02:00
|
|
|
<SocialMediaItem link='https://www.npmjs.com/~theoludwig' ariaLabel='npm'>
|
2021-06-24 20:10:53 +02:00
|
|
|
<NPMIcon />
|
|
|
|
</SocialMediaItem>
|
2023-05-31 20:09:08 +02:00
|
|
|
<SocialMediaItem
|
|
|
|
link='https://twitter.com/theoludwig_'
|
|
|
|
ariaLabel='Twitter'
|
|
|
|
>
|
2021-06-24 20:10:53 +02:00
|
|
|
<TwitterIcon />
|
|
|
|
</SocialMediaItem>
|
2021-05-08 19:52:04 +02:00
|
|
|
<SocialMediaItem
|
2023-05-31 20:09:08 +02:00
|
|
|
link='https://www.youtube.com/@theo_ludwig'
|
2021-05-08 19:52:04 +02:00
|
|
|
ariaLabel='YouTube'
|
|
|
|
>
|
|
|
|
<YouTubeIcon />
|
|
|
|
</SocialMediaItem>
|
2023-05-31 20:09:08 +02:00
|
|
|
<SocialMediaItem
|
|
|
|
link='https://www.twitch.tv/theoludwig'
|
|
|
|
ariaLabel='Twitch'
|
|
|
|
>
|
2021-05-08 19:52:04 +02:00
|
|
|
<TwitchIcon />
|
|
|
|
</SocialMediaItem>
|
2023-05-30 21:51:27 +02:00
|
|
|
<SocialMediaItem link='mailto:contact@theoludwig.fr' ariaLabel='Email'>
|
2021-05-08 19:52:04 +02:00
|
|
|
<EmailIcon />
|
|
|
|
</SocialMediaItem>
|
|
|
|
</ul>
|
2021-04-18 01:56:23 +02:00
|
|
|
)
|
|
|
|
}
|