import Link from 'next/link'
import {
MsfIcon,
HelpIcon,
DiscordIcon,
FacebookIcon,
GithubIcon,
InstagramIcon,
RedditIcon,
TwitterIcon,
OpenSourceIcon,
CcByIcon,
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`,
})
const socialList = {
MSF: {
icon: ,
href: 'https://www.youtube.com/channel/UCLAyxEL72gHvuKBpa-GmCvQ',
},
Discord: {
icon: ,
href: social.Discord,
},
Instagram: {
icon: ,
href: social.Instagram,
},
Facebook: {
icon: ,
href: social.Facebook,
},
GitHub: {
icon: ,
href: social.GitHub,
},
Reddit: {
icon: ,
href: social.Reddit,
},
Twitter: {
icon: ,
href: social.Twitter,
},
YouTube: {
icon: ,
href: social.YouTube,
},
'Open Souce License: MIT': {
icon: ,
href: 'https://github.com/freesewing/freesewing/blob/develop/LICENSE',
},
'Contact Information': {
icon: ,
href: '/contact',
},
}
export const SocialIcons = () =>
Object.keys(socialList).map((item) => (
{socialList[item].icon}
))