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.

14 lines
595B

  1. import { FaItunes, FaSpotify, FaTwitter } from 'react-icons/fa';
  2. import { RiMailSendLine } from 'react-icons/ri';
  3. export default function LinkList() {
  4. return (
  5. <span className="flex flex-row justify-evenly w-1/3 bg-font-special top-1 bottom-1 rounded">
  6. <a href="https://twitter.com/nerdbrawl1" target="_blank"> <FaTwitter color="#1DA1F2" /></a>
  7. <a> <FaSpotify color="#1DB954" /></a>
  8. <a> <FaItunes color="white" /></a>
  9. <a href="mailto:podcast@nerdbrawl.de" target="_blank"> <RiMailSendLine color="green" /></a>
  10. </span>
  11. )
  12. }