import Link from 'next/link' import { MsfIcon, HelpIcon, DiscordIcon, FacebookIcon, GitHubIcon, InstagramIcon, RedditIcon, TwitterIcon, OpenSourceIcon, YouTubeIcon, } from 'shared/components/icons.mjs' import { colors } from 'shared/components/wordmark.mjs' import { social } from 'config/social.mjs' const iconClasses = (i) => ({ className: `w-8 lg:w-12 h-8 lg:h-12 text-${colors[i]}-400 hover:text-neutral-content`, }) export const socialList = { MSF: { icon: , href: 'https://www.youtube.com/channel/UCLAyxEL72gHvuKBpa-GmCvQ', name: 'Doctors Without Borders / Médecins Sans Frontières', community: false, }, Discord: { icon: , href: social.Discord, community: true, }, Instagram: { icon: , href: social.Instagram, community: true, }, Facebook: { icon: , href: social.Facebook, community: true, }, GitHub: { icon: , href: social.GitHub, community: true, }, Reddit: { icon: , href: social.Reddit, community: true, }, Twitter: { icon: , href: social.Twitter, community: true, }, YouTube: { icon: , href: social.YouTube, community: true, }, 'Open Souce License: MIT': { icon: , href: 'https://github.com/freesewing/freesewing/blob/develop/LICENSE', community: false, }, 'Contact Information': { icon: , href: '/contact', community: false, }, } export const SocialIcons = () => Object.keys(socialList).map((item) => ( {socialList[item].icon} ))